From b38acd10e768b535aa2b5f38cd94b8b1d7e86322 Mon Sep 17 00:00:00 2001 From: Max Horn Date: Wed, 17 Dec 2003 17:36:04 +0000 Subject: cleanup svn-id: r11720 --- 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 9c1e4f86d4..e8311b9cba 100644 --- a/scumm/script_v6.cpp +++ b/scumm/script_v6.cpp @@ -1762,12 +1762,12 @@ void ScummEngine_v6::o6_actorOps() { int top_actor = a->top; int bottom_actor = a->bottom; // a->_zbuf = 1; ??? - a->needRedraw = 1; + a->needRedraw = true; a->drawActorCostume(); // a->_zbuf = 0; ??? - a->needRedraw = 1; + a->needRedraw = true; a->drawActorCostume(); - a->needRedraw = 0; + a->needRedraw = false; if (a->top > top_actor) { a->bottom = top_actor; -- cgit v1.2.3