diff options
| author | Markus Wick <degasus@users.noreply.github.com> | 2016-09-19 22:11:54 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2016-09-19 22:11:54 +0200 |
| commit | 26bb01217803c238ffb61be200ee28c008016ba9 (patch) | |
| tree | 881995ba50def51e4bbc9a352dcbeff5f248b3db /Source/Core/DiscIO/FileSystemGCWii.cpp | |
| parent | 04e6aaf419feb18e7b2f2be19aabd4b34660ce31 (diff) | |
| parent | 144c23dead80f1ebe23ce26927cdc35a8813608d (diff) | |
Merge pull request #4226 from lioncash/fs
Filesystem: Return strings from GetFileName without the const qualifier
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(); |
