Skip to content
Snippets Groups Projects
Commit 66a98ea6 authored by bunnei's avatar bunnei
Browse files

made qt window title consistent

parent 80a040ac
No related branches found
No related tags found
No related merge requests found
...@@ -93,6 +93,10 @@ GMainWindow::GMainWindow() ...@@ -93,6 +93,10 @@ GMainWindow::GMainWindow()
connect(GetHotkey("Main Window", "Load File", this), SIGNAL(activated()), this, SLOT(OnMenuLoadFile())); connect(GetHotkey("Main Window", "Load File", this), SIGNAL(activated()), this, SLOT(OnMenuLoadFile()));
connect(GetHotkey("Main Window", "Start Emulation", this), SIGNAL(activated()), this, SLOT(OnStartGame())); connect(GetHotkey("Main Window", "Start Emulation", this), SIGNAL(activated()), this, SLOT(OnStartGame()));
setWindowTitle(render_window->GetWindowTitle().c_str());
show();
LogManager::Init(); LogManager::Init();
System::Init(render_window); System::Init(render_window);
} }
......
...@@ -67,7 +67,7 @@ public: ...@@ -67,7 +67,7 @@ public:
protected: protected:
EmuWindow() : m_client_area_width(640), m_client_area_height(480) { EmuWindow() : m_client_area_width(640), m_client_area_height(480) {
char window_title[255]; char window_title[255];
sprintf(window_title, "citra-%s", Common::g_scm_desc); sprintf(window_title, "Citra | %s-%s", Common::g_scm_branch, Common::g_scm_desc);
m_window_title = window_title; m_window_title = window_title;
} }
virtual ~EmuWindow() {} virtual ~EmuWindow() {}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment