From 04fcb72e0b41bdd99e3fc1f8325aaea27c032440 Mon Sep 17 00:00:00 2001 From: JosJuice Date: Tue, 28 Apr 2015 17:20:33 +0200 Subject: [PATCH] Fix reading Wii FST size --- Source/Core/DiscIO/VolumeWiiCrypted.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Core/DiscIO/VolumeWiiCrypted.cpp b/Source/Core/DiscIO/VolumeWiiCrypted.cpp index 4c703fdb3f..b8ba94c966 100644 --- a/Source/Core/DiscIO/VolumeWiiCrypted.cpp +++ b/Source/Core/DiscIO/VolumeWiiCrypted.cpp @@ -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