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:
Max Horn 2002-08-04 02:53:50 +00:00
parent 77daed66ea
commit 8779d00789
6 changed files with 19 additions and 19 deletions

View file

@ -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()