aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Kiewitz2010-05-23 17:40:42 +0000
committerMartin Kiewitz2010-05-23 17:40:42 +0000
commit2ffbd661ac8c8eba7fcc20df33fc902687b5698e (patch)
treeadbb50ce8f478eff5c56d663950b1d38cadc7078
parente321e255147fc93a76518c92bcd521771f3ca651 (diff)
downloadscummvm-rg350-2ffbd661ac8c8eba7fcc20df33fc902687b5698e.tar.gz
scummvm-rg350-2ffbd661ac8c8eba7fcc20df33fc902687b5698e.tar.bz2
scummvm-rg350-2ffbd661ac8c8eba7fcc20df33fc902687b5698e.zip
SCI: removed hack for iceman in kDoBresen - fixes all sorts of automatic walking issues (like rescueing ambassador) in iceman, dancing at the beginning also still works - thx to [md5]
svn-id: r49163
-rw-r--r--engines/sci/engine/kmovement.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/engines/sci/engine/kmovement.cpp b/engines/sci/engine/kmovement.cpp
index 5acda3a325..42e690422c 100644
--- a/engines/sci/engine/kmovement.cpp
+++ b/engines/sci/engine/kmovement.cpp
@@ -333,8 +333,7 @@ reg_t kDoBresen(EngineState *s, int argc, reg_t *argv) {
completed = 1;
}
- // FIXME: find out why iceman needs this and we ask for version > SCI01
- if ((getSciVersion() > SCI_VERSION_01) || !strcmp(g_sci->getGameID(), "iceman"))
+ if ((getSciVersion() >= SCI_VERSION_1_EGA))
if (completed)
invoke_selector(INV_SEL(s, mover, moveDone, kStopOnInvalidSelector), 0);