diff options
author | tfarley <tfarleygithub@gmail.com> | 2015-05-18 21:24:43 -0700 |
---|---|---|
committer | tfarley <tfarleygithub@gmail.com> | 2015-05-22 15:51:33 -0700 |
commit | 16fbba3c2a21bf92e9dd6d17c89da9bccf339691 (patch) | |
tree | 3950e0267cc2cb1f624d0db3647cffacf4692307 /src/citra_qt/bootmanager.cpp | |
parent | 05dc633a8c35221ce8d6abe6ddf027f8b0bab6c2 (diff) |
MakeCurrent race condition fix
Diffstat (limited to 'src/citra_qt/bootmanager.cpp')
-rw-r--r-- | src/citra_qt/bootmanager.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/citra_qt/bootmanager.cpp b/src/citra_qt/bootmanager.cpp index ab9403007..ea46bb1da 100644 --- a/src/citra_qt/bootmanager.cpp +++ b/src/citra_qt/bootmanager.cpp @@ -28,11 +28,11 @@ EmuThread::EmuThread(GRenderWindow* render_window) : exec_step(false), running(false), stop_run(false), render_window(render_window) { - - connect(this, SIGNAL(started()), render_window, SLOT(moveContext())); } void EmuThread::run() { + render_window->MakeCurrent(); + stop_run = false; // holds whether the cpu was running during the last iteration, |