workaround for bug #558236; renamed actorAnimate to animateCostume (to distinguish it a bit from animateActor); removed Scumm::animateActor
svn-id: r4695
This commit is contained in:
parent
77daed66ea
commit
8779d00789
6 changed files with 19 additions and 19 deletions
|
@ -1429,7 +1429,11 @@ void Scumm::o6_animateActor()
|
|||
int anim = pop();
|
||||
int act = pop();
|
||||
|
||||
animateActor(act, anim);
|
||||
Actor *a = derefActorSafe(act, "o6_animateActor");
|
||||
if (!a)
|
||||
return;
|
||||
|
||||
a->animateActor(anim);
|
||||
}
|
||||
|
||||
void Scumm::o6_doSentence()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue