rename title of "waiting for players" window to help OBS

This commit is contained in:
Roman Fomin 2022-05-30 01:59:14 +07:00
parent 3b7e968acd
commit fd807712a6

View File

@ -64,7 +64,11 @@ static void OpenWaitDialog(void)
{
txt_window_action_t *cancel;
TXT_SetDesktopTitle(PROJECT_STRING);
char *title = M_StringJoin(PROJECT_STRING, ": Waiting for game start...", NULL);
TXT_SetDesktopTitle(title);
free(title);
window = TXT_NewWindow("Waiting for game start...");