From bad09fc35820c02b664ada9359867f1326249c92 Mon Sep 17 00:00:00 2001 From: JosJuice Date: Mon, 11 May 2015 11:19:30 +0200 Subject: Volume: Rename GetName to GetInternalName This is intended to better separate it from GetNames and to clarify that this name originally wasn't meant to be shown to users. The ISOProperties GUI is also updated, mainly because labeling the long banner name "short name" was confusing. --- Source/Core/DiscIO/VolumeDirectory.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Source/Core/DiscIO/VolumeDirectory.cpp') 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 CVolumeDirectory::GetNames() const { std::map names; - std::string name = GetName(); + std::string name = GetInternalName(); if (!name.empty()) names[IVolume::ELanguage::LANGUAGE_UNKNOWN] = name; return names; -- cgit v1.2.3