summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/citra_qt/main.cpp4
-rw-r--r--src/common/emu_window.h2
2 files changed, 5 insertions, 1 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}
diff --git a/src/common/emu_window.h b/src/common/emu_window.h
index c53d6d7a2..5e2c33d7a 100644
--- a/src/common/emu_window.h
+++ b/src/common/emu_window.h
@@ -67,7 +67,7 @@ public:
67protected: 67protected:
68 EmuWindow() : m_client_area_width(640), m_client_area_height(480) { 68 EmuWindow() : m_client_area_width(640), m_client_area_height(480) {
69 char window_title[255]; 69 char window_title[255];
70 sprintf(window_title, "citra-%s", Common::g_scm_desc); 70 sprintf(window_title, "Citra | %s-%s", Common::g_scm_branch, Common::g_scm_desc);
71 m_window_title = window_title; 71 m_window_title = window_title;
72 } 72 }
73 virtual ~EmuWindow() {} 73 virtual ~EmuWindow() {}