diff options
| author | JosJuice <josjuice@gmail.com> | 2015-09-26 15:24:29 +0200 |
|---|---|---|
| committer | JosJuice <josjuice@gmail.com> | 2015-09-26 15:24:29 +0200 |
| commit | 6935d281128ea78169ecde44e869f83a7b67ddb8 (patch) | |
| tree | 9ca5050250965d061534c82258120bf9b3683e7a /Source/Core/DiscIO/VolumeDirectory.cpp | |
| parent | 94ee720a0745939874ff4a663fe071c847369c67 (diff) | |
Display all compressed formats in blue in GUI
In the past, only GCZ was shown as compressed, not CISO and WBFS.
Diffstat (limited to 'Source/Core/DiscIO/VolumeDirectory.cpp')
| -rw-r--r-- | Source/Core/DiscIO/VolumeDirectory.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Source/Core/DiscIO/VolumeDirectory.cpp b/Source/Core/DiscIO/VolumeDirectory.cpp index eadb198eeb..e6b55ce6a5 100644 --- a/Source/Core/DiscIO/VolumeDirectory.cpp +++ b/Source/Core/DiscIO/VolumeDirectory.cpp @@ -225,6 +225,11 @@ IVolume::EPlatform CVolumeDirectory::GetVolumeType() const return m_is_wii ? WII_DISC : GAMECUBE_DISC; } +bool CVolumeDirectory::IsCompressed() const +{ + return false; +} + u64 CVolumeDirectory::GetSize() const { return 0; |
