mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-02 14:19:02 +00:00
Merge pull request #2339 from JosJuice/fix-wii-fst-size
Fix reading Wii FST size
This commit is contained in:
commit
1d6375b71f
1 changed files with 1 additions and 1 deletions
|
@ -220,7 +220,7 @@ u32 CVolumeWiiCrypted::GetFSTSize() const
|
||||||
if (!Read(0x428, 0x4, (u8*)&size, true))
|
if (!Read(0x428, 0x4, (u8*)&size, true))
|
||||||
return 0;
|
return 0;
|
||||||
|
|
||||||
return size;
|
return Common::swap32(size);
|
||||||
}
|
}
|
||||||
|
|
||||||
std::string CVolumeWiiCrypted::GetApploaderDate() const
|
std::string CVolumeWiiCrypted::GetApploaderDate() const
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue