summaryrefslogtreecommitdiffstats
path: root/src/citra_qt/main.cpp
diff options
context:
space:
mode:
authorbunnei <ericbunnie@gmail.com>2014-04-24 04:49:55 +0200
committerbunnei <ericbunnie@gmail.com>2014-04-24 04:49:55 +0200
commit66a98ea686ae4ff59d5891509b0e1bfd90ce1a3e (patch)
treea24694a63cbb71645c324208b4110a1288a80a60 /src/citra_qt/main.cpp
parentfixes to scm_rev generation to make it conistent with windows build (diff)
downloadyuzu-66a98ea686ae4ff59d5891509b0e1bfd90ce1a3e.tar
yuzu-66a98ea686ae4ff59d5891509b0e1bfd90ce1a3e.tar.gz
yuzu-66a98ea686ae4ff59d5891509b0e1bfd90ce1a3e.tar.bz2
yuzu-66a98ea686ae4ff59d5891509b0e1bfd90ce1a3e.tar.lz
yuzu-66a98ea686ae4ff59d5891509b0e1bfd90ce1a3e.tar.xz
yuzu-66a98ea686ae4ff59d5891509b0e1bfd90ce1a3e.tar.zst
yuzu-66a98ea686ae4ff59d5891509b0e1bfd90ce1a3e.zip
Diffstat (limited to 'src/citra_qt/main.cpp')
-rw-r--r--src/citra_qt/main.cpp4
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()
connect(GetHotkey("Main Window", "Load File", this), SIGNAL(activated()), this, SLOT(OnMenuLoadFile()));
connect(GetHotkey("Main Window", "Start Emulation", this), SIGNAL(activated()), this, SLOT(OnStartGame()));
+ setWindowTitle(render_window->GetWindowTitle().c_str());
+
+ show();
+
LogManager::Init();
System::Init(render_window);
}