diff options
author | liamwhite <liamwhite@users.noreply.github.com> | 2022-12-24 03:44:53 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-12-24 03:44:53 +0100 |
commit | c86e21abe422c3b424f4853e497932cdff5778e0 (patch) | |
tree | 12669f8a673eadd015b751926839348d718c7e5b | |
parent | Disable automatically opening the console on windows yuzu-cmd builds (#9485) (diff) | |
download | yuzu-c86e21abe422c3b424f4853e497932cdff5778e0.tar yuzu-c86e21abe422c3b424f4853e497932cdff5778e0.tar.gz yuzu-c86e21abe422c3b424f4853e497932cdff5778e0.tar.bz2 yuzu-c86e21abe422c3b424f4853e497932cdff5778e0.tar.lz yuzu-c86e21abe422c3b424f4853e497932cdff5778e0.tar.xz yuzu-c86e21abe422c3b424f4853e497932cdff5778e0.tar.zst yuzu-c86e21abe422c3b424f4853e497932cdff5778e0.zip |
-rw-r--r-- | src/yuzu/bootmanager.h | 2 |
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: * @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; } /** |