mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2026-04-22 10:02:01 +00:00
invert conditional
This commit is contained in:
parent
bb8b49b738
commit
8005112879
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…
Add table
Reference in a new issue