- update window title with current level name

This commit is contained in:
Rachael Alexanderson 2019-12-25 09:52:57 -05:00
commit 2e467bd239
3 changed files with 26 additions and 7 deletions

View file

@ -41,6 +41,8 @@
#include "v_font.h"
#include "utf8.h"
void I_UpdateWindowTitle();
CVAR (Bool, cl_spreaddecals, true, CVAR_ARCHIVE)
CVAR(Bool, var_pushers, true, CVAR_SERVERINFO);
CVAR(Bool, gl_cachenodes, true, CVAR_ARCHIVE|CVAR_GLOBALCONFIG)
@ -201,4 +203,5 @@ CUSTOM_CVAR(String, language, "auto", CVAR_ARCHIVE | CVAR_NOINITCALL | CVAR_GLOB
if (Level->info != nullptr) Level->LevelName = Level->info->LookupLevelName();
}
UpdateGenericUI(ui_generic);
I_UpdateWindowTitle();
}