input-rec: Always show current GSFrame on any savestate load or reset

Knowing the frame count after either can be very useful, so that should be displayed regardless of the blank screen.
This commit is contained in:
sonicfind 2022-09-23 13:45:47 -05:00 committed by refractionpcsx2
parent 592395d15c
commit 7987430825
1 changed files with 2 additions and 0 deletions

View File

@ -1129,6 +1129,7 @@ void VMManager::Reset()
if (g_InputRecording.isActive())
{
g_InputRecording.handleReset();
GSPresentCurrentFrame();
}
}
@ -1187,6 +1188,7 @@ bool VMManager::DoLoadState(const char* filename)
if (g_InputRecording.isActive())
{
g_InputRecording.handleLoadingSavestate();
GSPresentCurrentFrame();
}
return true;
}