mirror of https://github.com/PCSX2/pcsx2.git
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:
parent
592395d15c
commit
7987430825
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue