From fa18518cefe32b4c1847b067df931afd90d14aad Mon Sep 17 00:00:00 2001 From: Rachel Bryk Date: Sat, 15 Nov 2014 00:39:54 -0500 Subject: [PATCH] Fix reading wii revisions. --- 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 354779b90c..f756f88450 100644 --- a/Source/Core/DiscIO/VolumeWiiCrypted.cpp +++ b/Source/Core/DiscIO/VolumeWiiCrypted.cpp @@ -160,7 +160,7 @@ int CVolumeWiiCrypted::GetRevision() const return 0; u8 revision; - if (!Read(7, 1, &revision)) + if (!m_pReader->Read(7, 1, &revision)) return 0; return revision;