diff options
Diffstat (limited to 'src/citra_qt/main.cpp')
| -rw-r--r-- | src/citra_qt/main.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/citra_qt/main.cpp b/src/citra_qt/main.cpp index 32cceaf7e..ebd52a7b3 100644 --- a/src/citra_qt/main.cpp +++ b/src/citra_qt/main.cpp | |||
| @@ -3,6 +3,7 @@ | |||
| 3 | // Refer to the license.txt file included. | 3 | // Refer to the license.txt file included. |
| 4 | 4 | ||
| 5 | #include <clocale> | 5 | #include <clocale> |
| 6 | #include <memory> | ||
| 6 | #include <thread> | 7 | #include <thread> |
| 7 | 8 | ||
| 8 | #include <QDesktopWidget> | 9 | #include <QDesktopWidget> |
| @@ -30,7 +31,6 @@ | |||
| 30 | #include "citra_qt/debugger/ramview.h" | 31 | #include "citra_qt/debugger/ramview.h" |
| 31 | #include "citra_qt/debugger/registers.h" | 32 | #include "citra_qt/debugger/registers.h" |
| 32 | 33 | ||
| 33 | #include "common/make_unique.h" | ||
| 34 | #include "common/microprofile.h" | 34 | #include "common/microprofile.h" |
| 35 | #include "common/platform.h" | 35 | #include "common/platform.h" |
| 36 | #include "common/scm_rev.h" | 36 | #include "common/scm_rev.h" |
| @@ -319,7 +319,7 @@ void GMainWindow::BootGame(const std::string& filename) { | |||
| 319 | return; | 319 | return; |
| 320 | 320 | ||
| 321 | // Create and start the emulation thread | 321 | // Create and start the emulation thread |
| 322 | emu_thread = Common::make_unique<EmuThread>(render_window); | 322 | emu_thread = std::make_unique<EmuThread>(render_window); |
| 323 | emit EmulationStarting(emu_thread.get()); | 323 | emit EmulationStarting(emu_thread.get()); |
| 324 | render_window->moveContext(); | 324 | render_window->moveContext(); |
| 325 | emu_thread->start(); | 325 | emu_thread->start(); |