mirror of
https://git.do.srb2.org/STJr/SRB2.git
synced 2025-03-20 09:52:18 +00:00
Fixed a missing space in the "Speeding off to..." text
This commit is contained in:
parent
fa4c520ce0
commit
aabddd69f1
1 changed files with 1 additions and 1 deletions
|
@ -2809,7 +2809,7 @@ boolean P_SetupLevel(boolean skipprecip)
|
|||
snprintf(tx, 63, "%s%s%s",
|
||||
mapheaderinfo[gamemap-1]->lvlttl,
|
||||
(mapheaderinfo[gamemap-1]->levelflags & LF_NOZONE) ? "" : " Zone",
|
||||
(mapheaderinfo[gamemap-1]->actnum > 0) ? va("%d",mapheaderinfo[gamemap-1]->actnum) : "");
|
||||
(mapheaderinfo[gamemap-1]->actnum > 0) ? va(" %d",mapheaderinfo[gamemap-1]->actnum) : "");
|
||||
V_DrawSmallString(1, 195, V_ALLOWLOWERCASE|V_TRANSLUCENT, tx);
|
||||
I_UpdateNoVsync();
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue