Filesystem: Return strings from GetFileName without the const qualifier

This is mostly pointless and can inhibit move construction
This commit is contained in:
Lioncash
2016-09-18 12:31:40 -04:00
parent 2c8b9d18a8
commit 144c23dead
3 changed files with 3 additions and 3 deletions

View File

@ -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();