mirror of
https://git.do.srb2.org/STJr/SRB2.git
synced 2025-03-21 18:32:08 +00:00
invert conditional
This commit is contained in:
parent
85f1b847e9
commit
5c55c86dd2
1 changed files with 1 additions and 1 deletions
|
@ -1178,7 +1178,7 @@ tic_t lt_exitticker = 0, lt_endtime = 0;
|
|||
//
|
||||
static void ST_cacheLevelTitle(void)
|
||||
{
|
||||
if (mapheaderinfo[gamemap-1]->levelflags & LF_WARNINGTITLE)
|
||||
if (!(mapheaderinfo[gamemap-1]->levelflags & LF_WARNINGTITLE))
|
||||
{
|
||||
lt_patches[0] = (patch_t *)W_CachePatchName("LTACTBLU", PU_HUDGFX);
|
||||
lt_patches[1] = (patch_t *)W_CachePatchName("LTZIGZAG", PU_HUDGFX);
|
||||
|
|
Loading…
Reference in a new issue