diff options
| author | Lioncash <mathew1800@gmail.com> | 2016-09-18 12:31:40 -0400 |
|---|---|---|
| committer | Lioncash <mathew1800@gmail.com> | 2016-09-18 12:56:25 -0400 |
| commit | 144c23dead80f1ebe23ce26927cdc35a8813608d (patch) | |
| tree | df3e433e1bfcdd30a7c5fa9c1da771b7520628fe /Source/Core/DiscIO/FileSystemGCWii.cpp | |
| parent | 2c8b9d18a8fadb6f543f0c856f624cc9000e0564 (diff) | |
Filesystem: Return strings from GetFileName without the const qualifier
This is mostly pointless and can inhibit move construction
Diffstat (limited to 'Source/Core/DiscIO/FileSystemGCWii.cpp')
| -rw-r--r-- | Source/Core/DiscIO/FileSystemGCWii.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/DiscIO/FileSystemGCWii.cpp b/Source/Core/DiscIO/FileSystemGCWii.cpp index 9e27e6f70e..b19fd7cf95 100644 --- a/Source/Core/DiscIO/FileSystemGCWii.cpp +++ b/Source/Core/DiscIO/FileSystemGCWii.cpp @@ -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(); |
