summaryrefslogtreecommitdiff
path: root/Source/Core/DiscIO/VolumeDirectory.cpp
diff options
context:
space:
mode:
authorAnthony Serna <Helios747@users.noreply.github.com>2016-06-25 10:31:46 -0500
committerGitHub <noreply@github.com>2016-06-25 10:31:46 -0500
commit64cf74abb4158ffabe8b5dce3c1a4d42a82b054f (patch)
tree9ced49cda44840936e4130d2d3a762473705c244 /Source/Core/DiscIO/VolumeDirectory.cpp
parent384637bdb82ac2ce1c87984c1b19594b7f3b2ddc (diff)
parentb5104a79f1d39d2d7d160f2bd984f604a5ae2797 (diff)
Merge pull request #3678 from rukai/dolphinQtPropertiesDialog
DQt2: properties dialog - info tab
Diffstat (limited to 'Source/Core/DiscIO/VolumeDirectory.cpp')
-rw-r--r--Source/Core/DiscIO/VolumeDirectory.cpp14
1 files changed, 9 insertions, 5 deletions
diff --git a/Source/Core/DiscIO/VolumeDirectory.cpp b/Source/Core/DiscIO/VolumeDirectory.cpp
index 8fe2e65cf0..5662fa57c2 100644
--- a/Source/Core/DiscIO/VolumeDirectory.cpp
+++ b/Source/Core/DiscIO/VolumeDirectory.cpp
@@ -63,10 +63,14 @@ bool CVolumeDirectory::Read(u64 _Offset, u64 _Length, u8* _pBuffer, bool decrypt
if (!decrypt && (_Offset + _Length >= 0x400) && m_is_wii)
{
// Fully supporting this would require re-encrypting every file that's read.
- // Only supporting the areas that IOS allows software to read could be more feasible.
- // Currently, only the header (up to 0x400) is supported, though we're cheating a bit
- // with it by reading the header inside the current partition instead. Supporting the
- // header is enough for booting games, but not for running things like the Disc Channel.
+ // Only supporting the areas that IOS allows software to read could be more
+ // feasible.
+ // Currently, only the header (up to 0x400) is supported, though we're
+ // cheating a bit
+ // with it by reading the header inside the current partition instead.
+ // Supporting the
+ // header is enough for booting games, but not for running things like the
+ // Disc Channel.
return false;
}
@@ -183,7 +187,7 @@ std::string CVolumeDirectory::GetInternalName() const
return "";
}
-std::map<IVolume::ELanguage, std::string> CVolumeDirectory::GetNames(bool prefer_long) const
+std::map<IVolume::ELanguage, std::string> CVolumeDirectory::GetLongNames() const
{
std::string name = GetInternalName();
if (name.empty())