mirror of
https://github.com/RPCS3/rpcs3.git
synced 2024-11-22 10:42:36 +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 New Issue
Block a user