diff options
Diffstat (limited to 'scumm/script_v6.cpp')
-rw-r--r-- | scumm/script_v6.cpp | 6 |
1 files 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; |