From 348e33562e0099dedfdac5fc47e316e20ae2e9d4 Mon Sep 17 00:00:00 2001 From: Stenzek Date: Sat, 11 Jan 2025 21:34:20 +1000 Subject: [PATCH] Qt: Fix BP start/stop menu item after first activation --- src/duckstation-qt/qthost.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/duckstation-qt/qthost.cpp b/src/duckstation-qt/qthost.cpp index 72fdc1ea4..d9c91cfde 100644 --- a/src/duckstation-qt/qthost.cpp +++ b/src/duckstation-qt/qthost.cpp @@ -766,6 +766,7 @@ void EmuThread::stopFullscreenUI() if (m_is_fullscreen_ui_started) { GPUThread::StopFullscreenUI(); + m_is_fullscreen_ui_started = false; emit fullscreenUIStartedOrStopped(false); } }