Merge pull request #13237 from hrydgard/savestate-error-fix

Fix error in sceUsbMic savestate handling (need to accept old savestates without the section)
This commit is contained in:
Henrik Rydgård 2020-08-02 15:10:27 +02:00 committed by GitHub
commit d85b31cd27
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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;
}