From a999aa39ba4963b8c31b1db81f73bdc04e9b4772 Mon Sep 17 00:00:00 2001 From: segrax Date: Sat, 21 Jan 2012 17:50:55 +1100 Subject: SCUMM: Re-arrange some things to make it closer to the original --- engines/scumm/script_v0.cpp | 23 ++++++++++++----------- 1 file changed, 12 insertions(+), 11 deletions(-) (limited to 'engines/scumm/script_v0.cpp') diff --git a/engines/scumm/script_v0.cpp b/engines/scumm/script_v0.cpp index ec3cad009d..e277480aed 100644 --- a/engines/scumm/script_v0.cpp +++ b/engines/scumm/script_v0.cpp @@ -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); -- cgit v1.2.3