mirror of
https://git.do.srb2.org/STJr/SRB2.git
synced 2025-03-22 10:52:23 +00:00
Merge branch 'levelselect-tweaks' into 'master'
Some small tweaks to level select See merge request STJr/SRB2Internal!230
This commit is contained in:
commit
e63e36f5e4
1 changed files with 2 additions and 2 deletions
|
@ -4483,7 +4483,7 @@ static boolean M_CanShowLevelOnPlatter(INT32 mapnum, INT32 gt)
|
|||
return false;
|
||||
|
||||
case LLM_LEVELSELECT:
|
||||
if (mapheaderinfo[mapnum]->levelselect != maplistoption)
|
||||
if (!(mapheaderinfo[mapnum]->levelselect & maplistoption))
|
||||
return false;
|
||||
|
||||
return true;
|
||||
|
@ -6758,7 +6758,7 @@ static void M_LoadGameLevelSelect(INT32 choice)
|
|||
|
||||
SP_LevelSelectDef.prevMenu = currentMenu;
|
||||
levellistmode = LLM_LEVELSELECT;
|
||||
maplistoption = 1;
|
||||
maplistoption = 1+2;
|
||||
|
||||
if (!M_PrepareLevelPlatter(-1, true))
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue