aboutsummaryrefslogtreecommitdiff
path: root/engines/agi/op_test.cpp
diff options
context:
space:
mode:
authorEugene Sandulenko2011-08-14 18:47:51 +0100
committerEugene Sandulenko2011-08-14 18:48:59 +0100
commit273e37f7263ab30b445a8123af52fe81ddb762d0 (patch)
tree8bec238ddc1696530e7b59f1408dc6eca1c6cc62 /engines/agi/op_test.cpp
parent026a2c52da9d1efb9fc4f852c9f8cfa2473fcda5 (diff)
downloadscummvm-rg350-273e37f7263ab30b445a8123af52fe81ddb762d0.tar.gz
scummvm-rg350-273e37f7263ab30b445a8123af52fe81ddb762d0.tar.bz2
scummvm-rg350-273e37f7263ab30b445a8123af52fe81ddb762d0.zip
AGI: Renamed some #defines to our code conventions and moved them to enums
Diffstat (limited to 'engines/agi/op_test.cpp')
-rw-r--r--engines/agi/op_test.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/agi/op_test.cpp b/engines/agi/op_test.cpp
index bc711652f9..a44c68e0fc 100644
--- a/engines/agi/op_test.cpp
+++ b/engines/agi/op_test.cpp
@@ -188,7 +188,7 @@ void condUnknown13(AgiGame *state, uint8 *p) {
// This command is used at least in the Amiga version of Gold Rush! v2.05 1989-03-09
// (AGI 2.316) in logics 1, 3, 5, 6, 137 and 192 (Logic.192 revealed this command's nature).
// TODO: Check this command's implementation using disassembly just to be sure.
- int ec = state->viewTable[0].flags & ADJ_EGO_XY;
+ int ec = state->viewTable[0].flags & fAdjEgoXY;
debugC(7, kDebugLevelScripts, "op_test: in.motion.using.mouse = %s (Amiga-specific testcase 19)", ec ? "true" : "false");
state->testResult = ec;
}