Merge branch 'levelselect-tweaks' into 'master'

Some small tweaks to level select

See merge request STJr/SRB2Internal!230
This commit is contained in:
Monster Iestyn 2019-06-25 16:50:44 -04:00
commit e63e36f5e4
1 changed files with 2 additions and 2 deletions

View File

@ -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))
{