コード例 #1
0
ファイル: p_tick.c プロジェクト: TheMatthew/DoomUst
void P_RemoveThinker(thinker_t *thinker)
{
  R_StopInterpolationIfNeeded(thinker);
  thinker->function = P_RemoveThinkerDelayed;

  P_UpdateThinker(thinker);
}
コード例 #2
0
ファイル: p_tick.c プロジェクト: CatalystG/libretro-prboom
void P_RemoveThinker(thinker_t *thinker)
{
#ifndef __LIBRETRO__
  R_StopInterpolationIfNeeded(thinker);
#endif
  thinker->function = P_RemoveThinkerDelayed;

  P_UpdateThinker(thinker);
}