From 3c2b11fccb7ce475ee60adf1afc93c67f3c140af Mon Sep 17 00:00:00 2001 From: Connor McLaughlin Date: Fri, 29 Jan 2021 01:27:27 +1000 Subject: [PATCH] System: Don't log rewind pending flag when disabled --- src/core/system.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/core/system.cpp b/src/core/system.cpp index 3f99e3352..40716daf1 100644 --- a/src/core/system.cpp +++ b/src/core/system.cpp @@ -2226,6 +2226,9 @@ void DoMemorySaveStates() void SetRunaheadReplayFlag() { + if (s_runahead_frames == 0) + return; + Log_DevPrintf("Runahead rewind pending..."); s_runahead_replay_pending = true; }