Removed the INSTATECALL flag because it is now unused and was replaced by stateinfo

This commit is contained in:
Leonard2 2016-06-17 09:19:30 +02:00
commit abc7113e09
2 changed files with 1 additions and 3 deletions

View file

@ -120,7 +120,6 @@ bool ACustomInventory::CallStateChain (AActor *actor, FState *state)
ret[0].PointerAt((void **)&nextstate);
ret[1].IntAt(&retval);
this->flags5 |= MF5_INSTATECALL;
FState *savedstate = this->state;
while (state != NULL)
@ -191,7 +190,6 @@ bool ACustomInventory::CallStateChain (AActor *actor, FState *state)
}
state = nextstate;
}
this->flags5 &= ~MF5_INSTATECALL;
this->state = savedstate;
return !!result;
}