Assorted debugger-related fixes

Also fixes issue where the rewind machinery would run even during pause.
This commit is contained in:
Henrik Rydgård
2023-12-18 00:21:53 +01:00
parent 06e92e9d72
commit b2729507a1
4 changed files with 24 additions and 7 deletions
+3
View File
@@ -275,6 +275,9 @@ namespace SaveState
if (g_Config.iRewindSnapshotInterval <= 0) {
return;
}
if (coreState != CORE_RUNNING) {
return;
}
// For fast-forwarding, otherwise they may be useless and too close.
double now = time_now_d();