aboutsummaryrefslogtreecommitdiff
path: root/engines/kyra/script_mr.cpp
diff options
context:
space:
mode:
authorJohannes Schickel2009-06-29 17:06:17 +0000
committerJohannes Schickel2009-06-29 17:06:17 +0000
commitfbefe917f229c8d7314575cd76cbce3c9c4fc313 (patch)
treeece85c4fef337540f59401973ee0c1ef394f7f9a /engines/kyra/script_mr.cpp
parentc2d13aab2aa6299ad213f74fdf045b7b7ddcbf71 (diff)
downloadscummvm-rg350-fbefe917f229c8d7314575cd76cbce3c9c4fc313.tar.gz
scummvm-rg350-fbefe917f229c8d7314575cd76cbce3c9c4fc313.tar.bz2
scummvm-rg350-fbefe917f229c8d7314575cd76cbce3c9c4fc313.zip
Removed more obsolete TODO messages.
svn-id: r41956
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) {