diff --git a/pcsx2-gsrunner/Main.cpp b/pcsx2-gsrunner/Main.cpp index 987fae2d21..7451850b26 100644 --- a/pcsx2-gsrunner/Main.cpp +++ b/pcsx2-gsrunner/Main.cpp @@ -294,7 +294,12 @@ VsyncMode Host::GetEffectiveVSyncMode() bool Host::BeginPresentFrame(bool frame_skip) { - return g_host_display->BeginPresent(frame_skip); + if (g_host_display->BeginPresent(frame_skip)) + return true; + + // don't render imgui + ImGuiManager::NewFrame(); + return false; } void Host::EndPresentFrame()