From 16fbba3c2a21bf92e9dd6d17c89da9bccf339691 Mon Sep 17 00:00:00 2001 From: tfarley Date: Mon, 18 May 2015 21:24:43 -0700 Subject: MakeCurrent race condition fix --- src/citra_qt/main.cpp | 1 + 1 file changed, 1 insertion(+) (limited to 'src/citra_qt/main.cpp') diff --git a/src/citra_qt/main.cpp b/src/citra_qt/main.cpp index 2ea33ebc..f6010459 100644 --- a/src/citra_qt/main.cpp +++ b/src/citra_qt/main.cpp @@ -216,6 +216,7 @@ void GMainWindow::BootGame(std::string filename) { // Create and start the emulation thread emu_thread = Common::make_unique(render_window); emit EmulationStarting(emu_thread.get()); + render_window->moveContext(); emu_thread->start(); // BlockingQueuedConnection is important here, it makes sure we've finished refreshing our views before the CPU continues -- cgit v1.2.3