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 c593823b2d..670dd3a578 100644 --- a/scumm/script_v6.cpp +++ b/scumm/script_v6.cpp @@ -1653,9 +1653,9 @@ void Scumm_v6::o6_actorOps() { a->initActor(0); break; case 84: /* actor-elevation */ - k = pop(); - if (k != a->elevation) { - a->elevation = k; + i = pop(); + if (i != a->elevation) { + a->elevation = i; a->needRedraw = true; } break; |