System: Fix frame advance+runahead stepping 2 frames

This commit is contained in:
Stenzek 2025-07-10 12:43:23 +10:00
parent e4e57c674d
commit cd2d0503da
No known key found for this signature in database

View File

@ -2192,9 +2192,11 @@ void System::FrameDone()
{
Host::PumpMessagesOnCPUThread();
InputManager::PollSources();
CheckForAndExitExecution();
}
// Frame step can still trigger exit
CheckForAndExitExecution();
// Update input OSD if we're running
if (g_settings.display_show_inputs)
ImGuiManager::UpdateInputOverlay();