aboutsummaryrefslogtreecommitdiff
path: root/engines/sci/engine/static_selectors.cpp
diff options
context:
space:
mode:
authorFilippos Karapetis2009-11-20 14:17:47 +0000
committerFilippos Karapetis2009-11-20 14:17:47 +0000
commit551ca5f2c0d2806c77a7a6bb69d53c12a12021cc (patch)
treeb84dddf303163f3b857085dd9c587e7b98971bec /engines/sci/engine/static_selectors.cpp
parente7820f972d3c186e241fff34b42ddada3583c443 (diff)
downloadscummvm-rg350-551ca5f2c0d2806c77a7a6bb69d53c12a12021cc.tar.gz
scummvm-rg350-551ca5f2c0d2806c77a7a6bb69d53c12a12021cc.tar.bz2
scummvm-rg350-551ca5f2c0d2806c77a7a6bb69d53c12a12021cc.zip
Changed the lofs detection to iterate through all the methods of the Game object again, instead of a specific selector - fixes Jones
svn-id: r46006
Diffstat (limited to 'engines/sci/engine/static_selectors.cpp')
-rw-r--r--engines/sci/engine/static_selectors.cpp11
1 files changed, 5 insertions, 6 deletions
diff --git a/engines/sci/engine/static_selectors.cpp b/engines/sci/engine/static_selectors.cpp
index 89e194fea5..bfb1896e0b 100644
--- a/engines/sci/engine/static_selectors.cpp
+++ b/engines/sci/engine/static_selectors.cpp
@@ -63,17 +63,16 @@ static const char * const sci1Selectors[] = {
// Taken from Codename: Iceman (Full Game)
static const SelectorRemap sci0SelectorRemap[] = {
- { "cue", 121 }, { "moveDone", 170 }, { "setCursor", 254 },
- { "overlay", 270 }, { "points", 316 }, { "flags", 368 },
- { 0, 0 }
+ { "moveDone", 170 }, { "setCursor", 254 }, { "overlay", 270 },
+ { "points", 316 }, { "flags", 368 }, { 0, 0 }
};
// Taken from Leisure Suit Larry 1 VGA (Full Game)
static const SelectorRemap sci1SelectorRemap[] = {
{ "nodePtr", 44 }, { "cantBeHere", 57 }, { "topString", 101 },
- { "flags", 102 }, { "dispose", 105 }, { "newRoom", 173 },
- { "setCursor", 183 }, { "canBeHere", 232 }, { "syncTime", 247 },
- { "syncCue", 248 }, { 0, 0 }
+ { "flags", 102 }, { "dispose", 105 }, { "setCursor", 183 },
+ { "canBeHere", 232 }, { "syncTime", 247 }, { "syncCue", 248 },
+ { 0, 0 }
};
// Taken from KQ6 floppy (Full Game)