mirror of https://github.com/PCSX2/pcsx2.git
Merge pull request #329 from tadatada/mod_console_title
Inserted a game CRC in the title of the console log screen.
This commit is contained in:
commit
f0d85d7dcc
|
@ -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
|
// 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
|
// which are not part of g_Conf. The subsequent call to apply g_Conf settings (which is
|
||||||
|
|
Loading…
Reference in New Issue