mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-31 05:08:57 +00:00
Filesystem: Return strings from GetFileName without the const qualifier
This is mostly pointless and can inhibit move construction
This commit is contained in:
parent
2c8b9d18a8
commit
144c23dead
3 changed files with 3 additions and 3 deletions
|
@ -44,7 +44,7 @@ u64 CFileSystemGCWii::GetFileSize(const std::string& _rFullPath)
|
|||
return 0;
|
||||
}
|
||||
|
||||
const std::string CFileSystemGCWii::GetFileName(u64 _Address)
|
||||
std::string CFileSystemGCWii::GetFileName(u64 _Address)
|
||||
{
|
||||
if (!m_Initialized)
|
||||
InitFileSystem();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue