mirror of
https://github.com/RPCSX/rpcsx.git
synced 2025-12-06 07:12:14 +01:00
savestate_utils.cpp: Fix out-of-range bug
This commit is contained in:
parent
0cd316116b
commit
c019b10aa8
|
|
@ -196,9 +196,9 @@ bool is_savestate_version_compatible(const std::vector<version_entry>& data, boo
|
|||
}
|
||||
else
|
||||
{
|
||||
for (auto [identifier, _] : data)
|
||||
for (auto& entry : s_serial_versions)
|
||||
{
|
||||
s_serial_versions[identifier].current_version = 0;
|
||||
entry.current_version = 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue