diff options
| author | skidau <skidau@gmail.com> | 2015-05-13 13:19:41 +1000 |
|---|---|---|
| committer | skidau <skidau@gmail.com> | 2015-05-13 13:19:41 +1000 |
| commit | bdeb067597fe389e5a3c6490a4568bd418b60eab (patch) | |
| tree | 2fcbc6be116dd5184b4d67f15b22091769679f78 /Source/Core/DiscIO/VolumeDirectory.cpp | |
| parent | 42cc48f92976f753c110f0c467c22ad4b32f52a8 (diff) | |
| parent | bad09fc35820c02b664ada9359867f1326249c92 (diff) | |
Merge pull request #2402 from JosJuice/internal-title
Volume: Rename GetName to GetInternalName
Diffstat (limited to 'Source/Core/DiscIO/VolumeDirectory.cpp')
| -rw-r--r-- | Source/Core/DiscIO/VolumeDirectory.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/Core/DiscIO/VolumeDirectory.cpp b/Source/Core/DiscIO/VolumeDirectory.cpp index 876848b2d3..846d737ca1 100644 --- a/Source/Core/DiscIO/VolumeDirectory.cpp +++ b/Source/Core/DiscIO/VolumeDirectory.cpp @@ -182,7 +182,7 @@ std::string CVolumeDirectory::GetMakerID() const return "VOID"; } -std::string CVolumeDirectory::GetName() const +std::string CVolumeDirectory::GetInternalName() const { char name[0x60]; if (Read(0x20, 0x60, (u8*)name, false)) @@ -194,7 +194,7 @@ std::string CVolumeDirectory::GetName() const std::map<IVolume::ELanguage, std::string> CVolumeDirectory::GetNames() const { std::map<IVolume::ELanguage, std::string> names; - std::string name = GetName(); + std::string name = GetInternalName(); if (!name.empty()) names[IVolume::ELanguage::LANGUAGE_UNKNOWN] = name; return names; |
