mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-04-23 04:54:56 +00:00
Fix reading Wii FST size
This commit is contained in:
parent
79dff19aa0
commit
04fcb72e0b
1 changed files with 1 additions and 1 deletions
|
@ -214,7 +214,7 @@ u32 CVolumeWiiCrypted::GetFSTSize() const
|
|||
if (!Read(0x428, 0x4, (u8*)&size, true))
|
||||
return 0;
|
||||
|
||||
return size;
|
||||
return Common::swap32(size);
|
||||
}
|
||||
|
||||
std::string CVolumeWiiCrypted::GetApploaderDate() const
|
||||
|
|
Loading…
Add table
Reference in a new issue