aboutsummaryrefslogtreecommitdiff
path: root/engines/sci/engine/static_selectors.cpp
diff options
context:
space:
mode:
authorMatthew Hoops2010-08-01 04:40:46 +0000
committerMatthew Hoops2010-08-01 04:40:46 +0000
commitb02a326b893318dbf58eb3b383d8b0208ec8e8c2 (patch)
tree3d026f4b456cd58cbe706bd11b84d1c3450dc85b /engines/sci/engine/static_selectors.cpp
parent2b7e58ae9b38778c15024c38b840b2f4255c8ebf (diff)
downloadscummvm-rg350-b02a326b893318dbf58eb3b383d8b0208ec8e8c2.tar.gz
scummvm-rg350-b02a326b893318dbf58eb3b383d8b0208ec8e8c2.tar.bz2
scummvm-rg350-b02a326b893318dbf58eb3b383d8b0208ec8e8c2.zip
SCI: Add another LB2 floppy selector name for an uninit'd workaround (bug #3036291)
svn-id: r51565
Diffstat (limited to 'engines/sci/engine/static_selectors.cpp')
-rw-r--r--engines/sci/engine/static_selectors.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/engines/sci/engine/static_selectors.cpp b/engines/sci/engine/static_selectors.cpp
index 47893bbab2..aae6de01f1 100644
--- a/engines/sci/engine/static_selectors.cpp
+++ b/engines/sci/engine/static_selectors.cpp
@@ -176,11 +176,12 @@ Common::StringArray Kernel::checkStaticSelectorNames() {
names[110] = "init";
} else if (g_sci->getGameId() == GID_LAURABOW2) {
- // The floppy of version needs the open selector set to match up with the CD version's
- // workaround - bug #3035694
+ // The floppy of version needs the open and changeState selectors set to match up with the
+ // CD version's workarounds - bugs #3035694 and #3036291
if (names.size() < 190)
names.resize(190);
+ names[144] = "changeState";
names[189] = "open";
}