Compare commits

...

3 Commits

Author SHA1 Message Date
Dr.Hacknik
39869cbe9d Merge 2d88c1b985 into 87c3c93464 2018-02-13 16:56:16 +00:00
zoltx23
2d88c1b985 Changed title string 2018-01-17 16:56:52 -05:00
zoltx23
f922abb2cc Added string to display Compile date in the titlebar 2018-01-17 11:03:22 -05:00

View File

@@ -84,8 +84,8 @@ GMainWindow::GMainWindow() : config(new Config()), emu_thread(nullptr) {
ConnectMenuEvents();
ConnectWidgetEvents();
setWindowTitle(QString("yuzu %1| %2-%3")
.arg(Common::g_build_name, Common::g_scm_branch, Common::g_scm_desc));
setWindowTitle(QString("yuzu %1| %2-%3| Build date: %4")
.arg(Common::g_build_name, Common::g_scm_branch, Common::g_scm_desc, Common::g_build_date));
show();
game_list->PopulateAsync(UISettings::values.gamedir, UISettings::values.gamedir_deepscan);