diff options
Diffstat (limited to 'scumm/script_v8.cpp')
| -rw-r--r-- | scumm/script_v8.cpp | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/scumm/script_v8.cpp b/scumm/script_v8.cpp index a88e65cf0c..75c240fd10 100644 --- a/scumm/script_v8.cpp +++ b/scumm/script_v8.cpp @@ -967,11 +967,7 @@ void ScummEngine_v8::o8_actorOps() { a->initActor(0); break; case 0x6E: // SO_ACTOR_ELEVATION - i = pop(); - if (i != a->elevation) { - a->elevation = i; - a->needRedraw = true; - } + a->setElevation(pop()); break; case 0x6F: // SO_ACTOR_PALETTE Set actor palette j = pop(); |
