Skip to content

Commit

Permalink
fix argument type in p_tick.c
Browse files Browse the repository at this point in the history
  • Loading branch information
fabiangreffrath committed Dec 18, 2024
1 parent 169d5df commit daaf5d2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/p_tick.c
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,7 @@ static void P_RunThinkers (void)
currentthinker != &thinkercap;
currentthinker = currentthinker->next)
if (currentthinker->function.p1)
currentthinker->function.p1(currentthinker);
currentthinker->function.p1((mobj_t *)currentthinker);

// [crispy] support MUSINFO lump (dynamic music changing)
T_MusInfo();
Expand Down

0 comments on commit daaf5d2

Please sign in to comment.