summaryrefslogtreecommitdiff
path: root/Source/Core/DiscIO/FileSystemGCWii.cpp
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2016-09-18 12:31:40 -0400
committerLioncash <mathew1800@gmail.com>2016-09-18 12:56:25 -0400
commit144c23dead80f1ebe23ce26927cdc35a8813608d (patch)
treedf3e433e1bfcdd30a7c5fa9c1da771b7520628fe /Source/Core/DiscIO/FileSystemGCWii.cpp
parent2c8b9d18a8fadb6f543f0c856f624cc9000e0564 (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.cpp2
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();