From be09d4dddc276a836e02a18f8e330e09b53a233b Mon Sep 17 00:00:00 2001 From: Travis Howell Date: Mon, 5 Jan 2004 14:39:44 +0000 Subject: [PATCH] Had checks wrong way around, seems to work now. svn-id: r12158 --- scumm/script_v6.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/scumm/script_v6.cpp b/scumm/script_v6.cpp index 2b2e9cd7929..f2e86379846 100644 --- a/scumm/script_v6.cpp +++ b/scumm/script_v6.cpp @@ -1780,7 +1780,7 @@ void ScummEngine_v6::o6_actorOps() { case 218: { // TODO: this opcode is used in the putt-putt fun pack, in 'checkers" mini game - warning("o6_actorOps(): unimplemented opcode 218"); + warning("o6_actorOps():218 partially unimplemented"); int top_actor = a->top; int bottom_actor = a->bottom; @@ -1792,10 +1792,10 @@ void ScummEngine_v6::o6_actorOps() { a->drawActorCostume(); a->needRedraw = false; - if (a->top > top_actor) { + if (a->top < top_actor) { a->bottom = top_actor; } - if (a->bottom < bottom_actor) { + if (a->bottom > bottom_actor) { a->bottom = bottom_actor; } }