- add level names to title bar (and by proxy, to RPC)

This commit is contained in:
Rachael Alexanderson 2022-03-18 04:56:55 -04:00
parent 4be214e33d
commit 735740e453
6 changed files with 15 additions and 2 deletions

View file

@ -1675,6 +1675,14 @@ void InitBuildTiles()
static FString LevelName;
void TITLE_InformName(const char* newname)
{
LevelName = newname;
if (newname[0] == '$')
LevelName = GStrings(newname + 1);
I_UpdateWindowTitle();
}
void I_UpdateWindowTitle()
{
FString titlestr;