aboutsummaryrefslogtreecommitdiff
path: root/engines/kyra/script_mr.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'engines/kyra/script_mr.cpp')
-rw-r--r--engines/kyra/script_mr.cpp7
1 files changed, 2 insertions, 5 deletions
diff --git a/engines/kyra/script_mr.cpp b/engines/kyra/script_mr.cpp
index 558d703f15..1800bd1939 100644
--- a/engines/kyra/script_mr.cpp
+++ b/engines/kyra/script_mr.cpp
@@ -381,13 +381,10 @@ int KyraEngine_MR::o3_checkInRect(EMCState *script) {
y += desc[1];
}
- if (x >= x1 && x <= x2 && y >= y1 && y <= y2) {
- //XXX
+ if (x >= x1 && x <= x2 && y >= y1 && y <= y2)
return 1;
- } else {
- //XXX
+ else
return 0;
- }
}
int KyraEngine_MR::o3_updateConversations(EMCState *script) {