Compare commits

..

4 Commits

Author SHA1 Message Date
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
bunnei
d92636d424 Merge pull request #67 from RiverCityRansomware/gdbstubtypo
Fix gdbstub typo
2018-01-17 10:27:00 -05:00
River City Ransomware
d05dc3f4dd Fix gdbstub typo, fixes Citra #3318
Core::System().GetInstance().IsPoweredOn() -> Core::System::GetInstance().IsPoweredOn()
2018-01-17 09:25:25 -05:00
3 changed files with 5 additions and 7 deletions

View File

@@ -905,7 +905,7 @@ void ToggleServer(bool status) {
server_enabled = status;
// Start server
if (!IsConnected() && Core::System().GetInstance().IsPoweredOn()) {
if (!IsConnected() && Core::System::GetInstance().IsPoweredOn()) {
Init();
}
} else {

View File

@@ -7,8 +7,7 @@
<x>0</x>
<y>0</y>
<width>740</width>
<width>461</width>
<height>500</height>
<height>500</height>
</rect>
</property>
<property name="windowTitle">
@@ -18,8 +17,7 @@
<item>
<widget class="QTabWidget" name="tabWidget">
<property name="currentIndex">
<number>4</number>
<number>0</number>
<number>0</number>
</property>
<widget class="ConfigureGeneral" name="generalTab">
<attribute name="title">

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);