diff options
| author | flacs <tilkax@gmail.com> | 2015-09-27 12:57:19 +0200 |
|---|---|---|
| committer | flacs <tilkax@gmail.com> | 2015-09-27 12:57:19 +0200 |
| commit | 34c020352fde5f23969340d31b9ff71b03bf5bb6 (patch) | |
| tree | c7175758ba79d33625f1a44436b542fea6d62006 /Source/Core/DiscIO/VolumeWad.cpp | |
| parent | 8ea9b07b59c8b45b6cbe1c559a228f5675dea71c (diff) | |
| parent | 6935d281128ea78169ecde44e869f83a7b67ddb8 (diff) | |
Merge pull request #3092 from JosJuice/compressed-blobs
Display all compressed formats in blue in GUI
Diffstat (limited to 'Source/Core/DiscIO/VolumeWad.cpp')
| -rw-r--r-- | Source/Core/DiscIO/VolumeWad.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Source/Core/DiscIO/VolumeWad.cpp b/Source/Core/DiscIO/VolumeWad.cpp index 6df6ceb423..fb510afefc 100644 --- a/Source/Core/DiscIO/VolumeWad.cpp +++ b/Source/Core/DiscIO/VolumeWad.cpp @@ -126,6 +126,11 @@ std::map<IVolume::ELanguage, std::string> CVolumeWAD::GetNames(bool prefer_long) return ReadWiiNames(name_data); } +bool CVolumeWAD::IsCompressed() const +{ + return m_pReader ? m_pReader->IsCompressed() : false; +} + u64 CVolumeWAD::GetSize() const { if (m_pReader) |
