diff options
author | Martin Kiewitz | 2016-01-31 13:50:37 +0100 |
---|---|---|
committer | Martin Kiewitz | 2016-01-31 13:50:37 +0100 |
commit | 8115145e4bbb1d0e7ba961a0376bb1f538a4f132 (patch) | |
tree | fc002105f016440f8e27cdfec3373bd3dd4a7335 /engines | |
parent | 6baadff8d371584caaf6c83238847c54ec4b8261 (diff) | |
download | scummvm-rg350-8115145e4bbb1d0e7ba961a0376bb1f538a4f132.tar.gz scummvm-rg350-8115145e4bbb1d0e7ba961a0376bb1f538a4f132.tar.bz2 scummvm-rg350-8115145e4bbb1d0e7ba961a0376bb1f538a4f132.zip |
AGI: hardcoded value replaced with VM_VAR_SECONDS
Diffstat (limited to 'engines')
-rw-r--r-- | engines/agi/op_test.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/engines/agi/op_test.cpp b/engines/agi/op_test.cpp index afb1ddb820..701bbcd59c 100644 --- a/engines/agi/op_test.cpp +++ b/engines/agi/op_test.cpp @@ -42,37 +42,37 @@ namespace Agi { #define testObjInRoom(obj, v) (state->_vm->objectGetLocation(obj) == getVar(v)) void condEqual(AgiGame *state, uint8 *p) { - if (p[0] == 11) + if (p[0] == VM_VAR_SECONDS) state->_vm->_timerHack++; state->testResult = testEqual(p[0], p[1]); } void condEqualV(AgiGame *state, uint8 *p) { - if (p[0] == 11 || p[1] == 11) + if (p[0] == VM_VAR_SECONDS || p[1] == VM_VAR_SECONDS) state->_vm->_timerHack++; state->testResult = testEqual(p[0], getVar(p[1])); } void condLess(AgiGame *state, uint8 *p) { - if (p[0] == 11) + if (p[0] == VM_VAR_SECONDS) state->_vm->_timerHack++; state->testResult = testLess(p[0], p[1]); } void condLessV(AgiGame *state, uint8 *p) { - if (p[0] == 11 || p[1] == 11) + if (p[0] == VM_VAR_SECONDS || p[1] == VM_VAR_SECONDS) state->_vm->_timerHack++; state->testResult = testLess(p[0], getVar(p[1])); } void condGreater(AgiGame *state, uint8 *p) { - if (p[0] == 11) + if (p[0] == VM_VAR_SECONDS) state->_vm->_timerHack++; state->testResult = testGreater(p[0], p[1]); } void condGreaterV(AgiGame *state, uint8 *p) { - if (p[0] == 11 || p[1] == 11) + if (p[0] == VM_VAR_SECONDS || p[1] == VM_VAR_SECONDS) state->_vm->_timerHack++; state->testResult = testGreater(p[0], getVar(p[1])); } |