System: Don't log rewind pending flag when disabled

This commit is contained in:
Connor McLaughlin 2021-01-29 01:27:27 +10:00
parent 84c30703b2
commit 3c2b11fccb
1 changed files with 3 additions and 0 deletions

View File

@ -2226,6 +2226,9 @@ void DoMemorySaveStates()
void SetRunaheadReplayFlag()
{
if (s_runahead_frames == 0)
return;
Log_DevPrintf("Runahead rewind pending...");
s_runahead_replay_pending = true;
}