SCUMM: Re-arrange some things to make it closer to the original

This commit is contained in:
segrax 2012-01-21 17:50:55 +11:00 committed by Tobias Gunkel
parent e331421eae
commit a999aa39ba
4 changed files with 42 additions and 35 deletions

View file

@ -672,19 +672,20 @@ void ScummEngine_v0::o_animateActor() {
a->_byte_FDE8 = unk;
switch( anim ) {
case 0xFE:
// 0x6993
a->_speaking = 0x80; // Enabled, but not switching
return;
case 0xFD:
// 0x69A3
a->_speaking = 0x00;
return;
case 0xFE:
// 0x6993
a->_speaking = 0x80; // Enabled, but not switching
return;
case 0xFD:
// 0x69A3
a->_speaking = 0x00;
return;
case 0xFF:
a->stopActorMoving();
return;
case 0xFF:
a->stopActorMoving();
return;
}
a->animateActor(anim);