diff options
Diffstat (limited to 'src/citra_qt/main.cpp')
| -rw-r--r-- | src/citra_qt/main.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/citra_qt/main.cpp b/src/citra_qt/main.cpp index 1bf9bc53c..bac6a6bb8 100644 --- a/src/citra_qt/main.cpp +++ b/src/citra_qt/main.cpp | |||
| @@ -26,12 +26,16 @@ | |||
| 26 | #include "core/core.h" | 26 | #include "core/core.h" |
| 27 | #include "core/loader/loader.h" | 27 | #include "core/loader/loader.h" |
| 28 | #include "core/arm/disassembler/load_symbol_map.h" | 28 | #include "core/arm/disassembler/load_symbol_map.h" |
| 29 | #include "citra_qt/config.h" | ||
| 29 | 30 | ||
| 30 | #include "version.h" | 31 | #include "version.h" |
| 31 | 32 | ||
| 32 | 33 | ||
| 33 | GMainWindow::GMainWindow() | 34 | GMainWindow::GMainWindow() |
| 34 | { | 35 | { |
| 36 | LogManager::Init(); | ||
| 37 | Config config; | ||
| 38 | |||
| 35 | ui.setupUi(this); | 39 | ui.setupUi(this); |
| 36 | statusBar()->hide(); | 40 | statusBar()->hide(); |
| 37 | 41 | ||
| @@ -112,7 +116,6 @@ GMainWindow::GMainWindow() | |||
| 112 | 116 | ||
| 113 | show(); | 117 | show(); |
| 114 | 118 | ||
| 115 | LogManager::Init(); | ||
| 116 | System::Init(render_window); | 119 | System::Init(render_window); |
| 117 | } | 120 | } |
| 118 | 121 | ||