From ea6e78ab0d0fbad2c5cbc845567e5e8de53f586b Mon Sep 17 00:00:00 2001 From: tadatada Date: Mon, 13 Oct 2014 06:10:53 +0900 Subject: [PATCH] Inserted a game CRC in the title of the console log screen. --- pcsx2/gui/AppCoreThread.cpp | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/pcsx2/gui/AppCoreThread.cpp b/pcsx2/gui/AppCoreThread.cpp index 07f1cb3d85..4a1a8211ca 100644 --- a/pcsx2/gui/AppCoreThread.cpp +++ b/pcsx2/gui/AppCoreThread.cpp @@ -403,7 +403,13 @@ void AppCoreThread::ApplySettings( const Pcsx2Config& src ) } } - Console.SetTitle(gameName + gameSerial + gameCompat + gameFixes + gamePatch + gameCheats + gameWsHacks); + wxString consoleTitle = gameName + gameSerial; + if (!gameSerial.IsEmpty()) { + consoleTitle += L" [" + gameCRC.MakeUpper() + L"]"; + } + consoleTitle += gameCompat + gameFixes + gamePatch + gameCheats + gameWsHacks; + + Console.SetTitle(consoleTitle); // Re-entry guard protects against cases where code wants to manually set core settings // which are not part of g_Conf. The subsequent call to apply g_Conf settings (which is