summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGravatar liamwhite2022-12-23 21:44:53 -0500
committerGravatar GitHub2022-12-23 21:44:53 -0500
commitc86e21abe422c3b424f4853e497932cdff5778e0 (patch)
tree12669f8a673eadd015b751926839348d718c7e5b /src
parentDisable automatically opening the console on windows yuzu-cmd builds (#9485) (diff)
downloadyuzu-c86e21abe422c3b424f4853e497932cdff5778e0.tar.gz
yuzu-c86e21abe422c3b424f4853e497932cdff5778e0.tar.xz
yuzu-c86e21abe422c3b424f4853e497932cdff5778e0.zip
qt: fix 'Pause' menu item (#9497)
Diffstat (limited to 'src')
-rw-r--r--src/yuzu/bootmanager.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/yuzu/bootmanager.h b/src/yuzu/bootmanager.h
index 1c2e76369..eca16b313 100644
--- a/src/yuzu/bootmanager.h
+++ b/src/yuzu/bootmanager.h
@@ -80,7 +80,7 @@ public:
80 * @return True if the emulation thread is running, otherwise false 80 * @return True if the emulation thread is running, otherwise false
81 */ 81 */
82 bool IsRunning() const { 82 bool IsRunning() const {
83 return m_is_running.load(); 83 return m_is_running.load() || m_should_run;
84 } 84 }
85 85
86 /** 86 /**