diff options
| author | flacs <tilkax@gmail.com> | 2015-09-29 03:46:29 +0200 |
|---|---|---|
| committer | flacs <tilkax@gmail.com> | 2015-09-29 03:46:29 +0200 |
| commit | aaa48e19fea02597c8057fbd2bf309890d64f27d (patch) | |
| tree | a111d53ca97d0703b93f84bb83c52ffd729d11b3 /Source/Core/DiscIO/VolumeWad.cpp | |
| parent | 4c1922ae5a1fbe47b358a6d68170f4fe3d00e96c (diff) | |
| parent | 21cb13828c768471d6553e10063eccbd61e704ed (diff) | |
Merge pull request #3097 from JosJuice/blob-type
Fix blob type detection for game right-click menu
Diffstat (limited to 'Source/Core/DiscIO/VolumeWad.cpp')
| -rw-r--r-- | Source/Core/DiscIO/VolumeWad.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/Core/DiscIO/VolumeWad.cpp b/Source/Core/DiscIO/VolumeWad.cpp index fb510afefc..7aea6beef9 100644 --- a/Source/Core/DiscIO/VolumeWad.cpp +++ b/Source/Core/DiscIO/VolumeWad.cpp @@ -126,9 +126,9 @@ std::map<IVolume::ELanguage, std::string> CVolumeWAD::GetNames(bool prefer_long) return ReadWiiNames(name_data); } -bool CVolumeWAD::IsCompressed() const +BlobType CVolumeWAD::GetBlobType() const { - return m_pReader ? m_pReader->IsCompressed() : false; + return m_pReader ? m_pReader->GetBlobType() : BlobType::PLAIN; } u64 CVolumeWAD::GetSize() const |
