diff options
| author | Lioncash <mathew1800@gmail.com> | 2015-09-12 00:50:00 -0400 |
|---|---|---|
| committer | Lioncash <mathew1800@gmail.com> | 2015-09-12 00:50:00 -0400 |
| commit | 113cc119de28050df16052139481e2b334da38bc (patch) | |
| tree | 508741e5074c8a3440dee8ebd1d268dc4feb04f5 /Source/Core/DiscIO/VolumeGC.cpp | |
| parent | fa62018c40b71dec96df335f840deacdbb8279d4 (diff) | |
| parent | e0a47c11f5653ecffb79adfac29c19a163baab8f (diff) | |
Merge pull request #2829 from JosJuice/fix-wii-fst-size-2
Fix reading Wii FST size (for real this time)
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 0efd0c6bf4..e0d17f17ee 100644 --- a/Source/Core/DiscIO/VolumeGC.cpp +++ b/Source/Core/DiscIO/VolumeGC.cpp @@ -144,7 +144,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; |
