From e24e4c20e146a5697e56a86f9b89f336612bd410 Mon Sep 17 00:00:00 2001 From: Connor McLaughlin Date: Fri, 22 May 2020 18:01:12 +1000 Subject: [PATCH] Qt: Fix pause button getting locked on after restarting game --- src/duckstation-qt/qthostinterface.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/duckstation-qt/qthostinterface.cpp b/src/duckstation-qt/qthostinterface.cpp index 79bcab074..d5a95412f 100644 --- a/src/duckstation-qt/qthostinterface.cpp +++ b/src/duckstation-qt/qthostinterface.cpp @@ -422,6 +422,7 @@ void QtHostInterface::OnSystemCreated() stopBackgroundControllerPollTimer(); emit emulationStarted(); + emit emulationPaused(false); } void QtHostInterface::OnSystemPaused(bool paused)