Compare commits

...

1 Commits

Author SHA1 Message Date
Liam 58a259d0fa qt: fix 'Pause' menu item 2022-12-23 14:22:45 -05:00
+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;
}
/**