mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 14:19:46 -06:00
Filesystem: Return strings from GetFileName without the const qualifier
This is mostly pointless and can inhibit move construction
This commit is contained in:
@ -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();
|
||||
|
Reference in New Issue
Block a user