diff --git a/src/duckstation-qt/qthost.cpp b/src/duckstation-qt/qthost.cpp index 2f8ff9477..add82a74b 100644 --- a/src/duckstation-qt/qthost.cpp +++ b/src/duckstation-qt/qthost.cpp @@ -980,6 +980,10 @@ void Host::OnSystemDestroyed() g_emu_thread->resetPerformanceCounters(); g_emu_thread->startBackgroundControllerPollTimer(); emit g_emu_thread->systemDestroyed(); + + // re-wake thread when we're running fsui, otherwise it won't draw + if (g_emu_thread->isRunningFullscreenUI()) + g_emu_thread->wakeThread(); } void EmuThread::reloadInputSources()