From c86e21abe422c3b424f4853e497932cdff5778e0 Mon Sep 17 00:00:00 2001
From: liamwhite <liamwhite@users.noreply.github.com>
Date: Fri, 23 Dec 2022 21:44:53 -0500
Subject: [PATCH] qt: fix 'Pause' menu item (#9497)

---
 src/yuzu/bootmanager.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/yuzu/bootmanager.h b/src/yuzu/bootmanager.h
index 1c2e76369b..eca16b3133 100644
--- a/src/yuzu/bootmanager.h
+++ b/src/yuzu/bootmanager.h
@@ -80,7 +80,7 @@ public:
      * @return True if the emulation thread is running, otherwise false
      */
     bool IsRunning() const {
-        return m_is_running.load();
+        return m_is_running.load() || m_should_run;
     }
 
     /**