mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-12-25 03:00:46 +00:00
- fixed typo in the actor variant of seqKill.
This commit is contained in:
parent
c5d7455317
commit
7c1826e909
1 changed files with 3 additions and 3 deletions
|
@ -479,12 +479,12 @@ SEQINST* GetInstance(int type, int nXIndex)
|
|||
|
||||
SEQINST* GetInstance(DBloodActor* actor)
|
||||
{
|
||||
return activeList.get(3, actor->s().index);
|
||||
return activeList.get(SS_SPRITE, actor->s().extra);
|
||||
}
|
||||
|
||||
int seqGetStatus(DBloodActor* actor)
|
||||
{
|
||||
return seqGetStatus(3, actor->s().index);
|
||||
return seqGetStatus(SS_SPRITE, actor->s().extra);
|
||||
}
|
||||
|
||||
void seqKill(int type, int nXIndex)
|
||||
|
@ -499,7 +499,7 @@ void seqKillAll()
|
|||
|
||||
void seqKill(DBloodActor* actor)
|
||||
{
|
||||
activeList.remove(3, actor->s().extra);
|
||||
activeList.remove(SS_SPRITE, actor->s().extra);
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue