From a47c33ac574aca460c07df1fc1f8c4d7425e5b9a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Henrik=20Rydg=C3=A5rd?= Date: Sun, 2 Aug 2020 15:08:30 +0200 Subject: [PATCH] Fix error in sceUsbMic savestate handling (need to accept old savestates without the section) Hopefully helps #13236. --- Core/HLE/sceUsbMic.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Core/HLE/sceUsbMic.cpp b/Core/HLE/sceUsbMic.cpp index 13a041a71e..788529e679 100644 --- a/Core/HLE/sceUsbMic.cpp +++ b/Core/HLE/sceUsbMic.cpp @@ -118,7 +118,7 @@ void __UsbMicShutdown() { } void __UsbMicDoState(PointerWrap &p) { - auto s = p.Section("sceUsbMic", 1, 1); + auto s = p.Section("sceUsbMic", 0, 1); if (!s) { return; }