savestate_utils.cpp: Fix out-of-range bug

This commit is contained in:
Eladash 2024-04-12 21:01:26 +03:00 committed by Elad Ashkenazi
parent 0cd316116b
commit c019b10aa8
1 changed files with 2 additions and 2 deletions

View File

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