Qt: Ensure thread has not exited if we say it is open

This commit is contained in:
Jeffrey Pfau 2015-07-19 18:14:35 -07:00
parent 2575097b7c
commit 393252718f
1 changed files with 1 additions and 1 deletions

View File

@ -55,7 +55,7 @@ public:
void threadContinue();
bool isPaused();
bool isLoaded() { return m_gameOpen; }
bool isLoaded() { return m_gameOpen && GBAThreadIsActive(&m_threadContext); }
bool audioSync() const { return m_audioSync; }
bool videoSync() const { return m_videoSync; }