diff options
| author | Jordan Woyak <jordan.woyak@gmail.com> | 2013-04-09 12:58:56 -0500 |
|---|---|---|
| committer | Jordan Woyak <jordan.woyak@gmail.com> | 2013-04-09 12:58:56 -0500 |
| commit | 98d35e590e25fdc3b42767f77ffef085d56ad451 (patch) | |
| tree | 8a0fde17f02d15a60bcc5b5fed7d981d1a4a5d82 /Source/Core/DiscIO/Src/VolumeGC.cpp | |
| parent | 018282c2b9f2c0f128b0ae6ce9157ae01de5c4d5 (diff) | |
Fixed split WBFS file size display. (probably)
Fixed issue 6222.
Diffstat (limited to 'Source/Core/DiscIO/Src/VolumeGC.cpp')
| -rw-r--r-- | Source/Core/DiscIO/Src/VolumeGC.cpp | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/Source/Core/DiscIO/Src/VolumeGC.cpp b/Source/Core/DiscIO/Src/VolumeGC.cpp index 6210172790..a4e9340ae3 100644 --- a/Source/Core/DiscIO/Src/VolumeGC.cpp +++ b/Source/Core/DiscIO/Src/VolumeGC.cpp @@ -138,6 +138,14 @@ u64 CVolumeGC::GetSize() const return 0; } +u64 CVolumeGC::GetRawSize() const +{ + if (m_pReader) + return m_pReader->GetRawSize(); + else + return 0; +} + bool CVolumeGC::IsDiscTwo() const { bool discTwo; |
