mirror of
https://git.do.srb2.org/STJr/SRB2.git
synced 2025-01-18 07:22:28 +00:00
Merge branch 'titlescreen-connect-crash-fix' into 'master'
Fix crash when using the -connect startup paramater (Resolves #292) Closes #292 See merge request STJr/SRB2Internal!478
This commit is contained in:
commit
755683171a
1 changed files with 4 additions and 0 deletions
|
@ -2591,6 +2591,10 @@ void F_TitleScreenDrawer(void)
|
|||
if (gamestate != GS_TITLESCREEN && gamestate != GS_WAITINGPLAYERS)
|
||||
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?
|
||||
hidepics = curhidepics;
|
||||
if (hidepics)
|
||||
|
|
Loading…
Reference in a new issue