aboutsummaryrefslogtreecommitdiff
path: root/engines/agos/script_e1.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'engines/agos/script_e1.cpp')
-rw-r--r--engines/agos/script_e1.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/engines/agos/script_e1.cpp b/engines/agos/script_e1.cpp
index 4e95bc6555..42d86fe18a 100644
--- a/engines/agos/script_e1.cpp
+++ b/engines/agos/script_e1.cpp
@@ -436,9 +436,9 @@ void AGOSEngine::oe1_whereTo() {
int16 f = getVarOrWord();
if (f == 1)
- _subjectItem = derefItem(getExitOf_e1(i, d));
+ _subjectItem = getExitOf_e1(i, d);
else
- _objectItem = derefItem(getExitOf_e1(i, d));
+ _objectItem = getExitOf_e1(i, d);
}
void AGOSEngine::oe1_doorExit() {
@@ -455,7 +455,7 @@ void AGOSEngine::oe1_doorExit() {
if (c)
a = derefItem(c->chChained);
while (ct < 6) {
- x = derefItem(getDoorOf(i, ct));
+ x = getDoorOf(i, ct);
if ((x == d) | (x == a)) {
writeVariable(f, ct);
return;