qt: fix 'Pause' menu item

This commit is contained in:
Liam
2022-12-23 14:22:45 -05:00
parent 1b11e0f0d3
commit 58a259d0fa
+1 -1
View File
@@ -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;
}
/**