mirror of
https://git.do.srb2.org/STJr/SRB2.git
synced 2025-02-20 19:02:34 +00:00
Some small tweaks
This commit is contained in:
parent
ec0719f74f
commit
742c43cf1c
1 changed files with 2 additions and 2 deletions
|
@ -4447,7 +4447,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;
|
||||
|
@ -6722,7 +6722,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