mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-10-30 08:01:28 +00:00
Fix crash when using the -connect startup paramater (Resolves #292)
This commit is contained in:
parent
0384cbb58a
commit
56f77a83f4
1 changed files with 4 additions and 0 deletions
|
|
@ -2591,6 +2591,10 @@ void F_TitleScreenDrawer(void)
|
||||||
if (gamestate != GS_TITLESCREEN && gamestate != GS_WAITINGPLAYERS)
|
if (gamestate != GS_TITLESCREEN && gamestate != GS_WAITINGPLAYERS)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
|
// Don't draw if title mode is set to Old/None and the patch isn't there
|
||||||
|
if (!ttwing && (curttmode == TTMODE_OLD || curttmode == TTMODE_NONE))
|
||||||
|
return;
|
||||||
|
|
||||||
// rei|miru: use title pics?
|
// rei|miru: use title pics?
|
||||||
hidepics = curhidepics;
|
hidepics = curhidepics;
|
||||||
if (hidepics)
|
if (hidepics)
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue