diff options
| author | Lioncash <mathew1800@gmail.com> | 2015-05-29 17:10:06 -0400 |
|---|---|---|
| committer | Lioncash <mathew1800@gmail.com> | 2015-05-29 17:10:06 -0400 |
| commit | ff29ffeb66a034937132bba196d2577b4e3e2173 (patch) | |
| tree | c4386f4c0cd8dcde618287948fdfe8dc309da445 /Source/Core/DiscIO/VolumeCommon.cpp | |
| parent | d1d284e784f85463760cd75095595d1705436282 (diff) | |
| parent | 9a000f40854a69a2fa0f12e1d48467a1be5c6c82 (diff) | |
Merge pull request #2483 from JosJuice/readwiinames-const
Volume: Mark ReadWiiNames parameter as const
Diffstat (limited to 'Source/Core/DiscIO/VolumeCommon.cpp')
| -rw-r--r-- | Source/Core/DiscIO/VolumeCommon.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/DiscIO/VolumeCommon.cpp b/Source/Core/DiscIO/VolumeCommon.cpp index cb4386af68..f503e259ca 100644 --- a/Source/Core/DiscIO/VolumeCommon.cpp +++ b/Source/Core/DiscIO/VolumeCommon.cpp @@ -57,7 +57,7 @@ std::vector<u32> IVolume::GetBanner(int* width, int* height) const return image_buffer; } -std::map<IVolume::ELanguage, std::string> IVolume::ReadWiiNames(std::vector<u8>& data) +std::map<IVolume::ELanguage, std::string> IVolume::ReadWiiNames(const std::vector<u8>& data) { std::map<IVolume::ELanguage, std::string> names; for (size_t i = 0; i < NUMBER_OF_LANGUAGES; ++i) |
