From 29b1276548c4ddccf3900cca5de30a9962818431 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?L=C3=A9o=20Lam?= Date: Sun, 6 Aug 2017 20:08:05 +0800 Subject: [PATCH] Boot/BS2: Update state file --- Source/Core/Core/Boot/Boot_BS2Emu.cpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Source/Core/Core/Boot/Boot_BS2Emu.cpp b/Source/Core/Core/Boot/Boot_BS2Emu.cpp index a817fcca8f..a93a551e71 100644 --- a/Source/Core/Core/Boot/Boot_BS2Emu.cpp +++ b/Source/Core/Core/Boot/Boot_BS2Emu.cpp @@ -345,6 +345,11 @@ bool CBoot::EmulatedBS2_Wii(const DiscIO::Volume& volume) return false; WriteEmptyPlayRecord(); + UpdateStateFlags([](StateFlags* state) { + state->flags = 0xc1; + state->type = 0xff; + state->discstate = 0x01; + }); if (!SetupWiiMemory(tmd.GetIOSId())) return false;