Beispiel #1
0
void P_RemoveThinker(thinker_t *thinker)
{
  R_StopInterpolationIfNeeded(thinker);
  thinker->function = P_RemoveThinkerDelayed;

  P_UpdateThinker(thinker);
}
Beispiel #2
0
void P_RemoveThinker(thinker_t *thinker)
{
#ifndef __LIBRETRO__
  R_StopInterpolationIfNeeded(thinker);
#endif
  thinker->function = P_RemoveThinkerDelayed;

  P_UpdateThinker(thinker);
}