Skip to content

Commit

Permalink
Fix intermission for second episode in ID1.WAD
Browse files Browse the repository at this point in the history
Were the "param" values in XWINTER1 changed in the recent patch for the Kex port??
  • Loading branch information
bradharding committed Oct 12, 2024
1 parent 66a99f8 commit 2a6aa35
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/wi_stuff.c
Original file line number Diff line number Diff line change
Expand Up @@ -321,7 +321,7 @@ static wi_animation_t *animation;
static bool CheckConditions(interlevelcond_t *conditions, bool enteringcondition)
{
bool conditionsmet = true;
int map = P_GetMapInEpisode((enteringcondition ? wbs->next : wbs->last) + 1);
int map = (enteringcondition ? wbs->next : wbs->last) + 1;
interlevelcond_t *condition;

array_foreach(condition, conditions)
Expand Down

0 comments on commit 2a6aa35

Please sign in to comment.