From 56189fcf30e0f0bcf086d82896a26e6bda2b0bc0 Mon Sep 17 00:00:00 2001 From: Travis Howell Date: Sun, 8 Mar 2009 10:08:09 +0000 Subject: Clarify several errors messages. svn-id: r39219 --- engines/agos/script_s2.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'engines/agos/script_s2.cpp') diff --git a/engines/agos/script_s2.cpp b/engines/agos/script_s2.cpp index d868e1e5bd..7d6b5e7a36 100644 --- a/engines/agos/script_s2.cpp +++ b/engines/agos/script_s2.cpp @@ -316,9 +316,9 @@ void AGOSEngine_Simon2::os2_animate() { int16 y = getVarOrWord(); uint16 palette = (getVarOrWord() & 15); - _lockWord |= 0x40; + _videoLockOut |= 0x40; animate(windowNum, zoneNum, vgaSpriteId, x, y, palette); - _lockWord &= ~0x40; + _videoLockOut &= ~0x40; } void AGOSEngine_Simon2::os2_stopAnimate() { @@ -475,10 +475,10 @@ void AGOSEngine::stopAnimateSimon2(uint16 a, uint16 b) { items[0] = to16Wrapper(a); items[1] = to16Wrapper(b); - _lockWord |= 0x8000; + _videoLockOut |= 0x8000; _vcPtr = (byte *)&items; vc60_stopAnimation(); - _lockWord &= ~0x8000; + _videoLockOut &= ~0x8000; } void AGOSEngine::waitForMark(uint i) { -- cgit v1.2.3