mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
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:
commit
d85b31cd27
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue