summaryrefslogtreecommitdiffstats
path: root/src/citra_qt/bootmanager.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'src/citra_qt/bootmanager.hxx')
-rw-r--r--src/citra_qt/bootmanager.hxx5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/citra_qt/bootmanager.hxx b/src/citra_qt/bootmanager.hxx
index 4c3e2f0a4..51cb781e9 100644
--- a/src/citra_qt/bootmanager.hxx
+++ b/src/citra_qt/bootmanager.hxx
@@ -1,6 +1,6 @@
-#include <QMutex>
#include <QThread>
#include <QGLWidget>
+#include <atomic>
#include "common/common.h"
#include "common/emu_window.h"
@@ -67,8 +67,7 @@ private:
bool exec_cpu_step;
bool cpu_running;
- bool stop_run;
- QMutex mutex;
+ std::atomic<bool> stop_run;
GRenderWindow* render_window;