Browse Source

qt: fix 'Pause' menu item (#9497)

nce_cpp
liamwhite 3 years ago
committed by GitHub
parent
commit
c069642dcc
  1. 2
      src/yuzu/bootmanager.h

2
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;
}
/**

Loading…
Cancel
Save