diff options
Diffstat (limited to 'src/citra_qt/main.cpp')
| -rw-r--r-- | src/citra_qt/main.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/citra_qt/main.cpp b/src/citra_qt/main.cpp index f20d33485..89aae7ce6 100644 --- a/src/citra_qt/main.cpp +++ b/src/citra_qt/main.cpp | |||
| @@ -93,6 +93,10 @@ GMainWindow::GMainWindow() | |||
| 93 | connect(GetHotkey("Main Window", "Load File", this), SIGNAL(activated()), this, SLOT(OnMenuLoadFile())); | 93 | connect(GetHotkey("Main Window", "Load File", this), SIGNAL(activated()), this, SLOT(OnMenuLoadFile())); |
| 94 | connect(GetHotkey("Main Window", "Start Emulation", this), SIGNAL(activated()), this, SLOT(OnStartGame())); | 94 | connect(GetHotkey("Main Window", "Start Emulation", this), SIGNAL(activated()), this, SLOT(OnStartGame())); |
| 95 | 95 | ||
| 96 | setWindowTitle(render_window->GetWindowTitle().c_str()); | ||
| 97 | |||
| 98 | show(); | ||
| 99 | |||
| 96 | LogManager::Init(); | 100 | LogManager::Init(); |
| 97 | System::Init(render_window); | 101 | System::Init(render_window); |
| 98 | } | 102 | } |