diff options
| author | JosJuice <josjuice@gmail.com> | 2015-08-10 16:35:23 +0200 |
|---|---|---|
| committer | JosJuice <josjuice@gmail.com> | 2015-08-10 16:35:23 +0200 |
| commit | e0a47c11f5653ecffb79adfac29c19a163baab8f (patch) | |
| tree | 1acfa0cb1581c14f7925b728950397e736fb3f5d /Source/Core/DiscIO/VolumeGC.cpp | |
| parent | 6f2400ebc08a1e300881ea48e5cac5abf2f3c08c (diff) | |
Fix reading Wii FST size (for real this time)
04fcb72 fixed an issue with reading the Wii FST size, but I found a second
issue when working on PR #2820 - the size must be shifted left by 2.
DiscScrubber and Boot already do this correctly using separate code.
Diffstat (limited to 'Source/Core/DiscIO/VolumeGC.cpp')
| -rw-r--r-- | Source/Core/DiscIO/VolumeGC.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/DiscIO/VolumeGC.cpp b/Source/Core/DiscIO/VolumeGC.cpp index f2e54bdde8..b73159b083 100644 --- a/Source/Core/DiscIO/VolumeGC.cpp +++ b/Source/Core/DiscIO/VolumeGC.cpp @@ -143,7 +143,7 @@ std::vector<u32> CVolumeGC::GetBanner(int* width, int* height) const return image_buffer; } -u32 CVolumeGC::GetFSTSize() const +u64 CVolumeGC::GetFSTSize() const { if (m_pReader == nullptr) return 0; |
