diff options
| -rw-r--r-- | engines/sci/engine/static_selectors.cpp | 3 | 
1 files changed, 2 insertions, 1 deletions
diff --git a/engines/sci/engine/static_selectors.cpp b/engines/sci/engine/static_selectors.cpp index aae6de01f1..f5e460969b 100644 --- a/engines/sci/engine/static_selectors.cpp +++ b/engines/sci/engine/static_selectors.cpp @@ -177,10 +177,11 @@ Common::StringArray Kernel::checkStaticSelectorNames() {  			names[110] = "init";  		} else if (g_sci->getGameId() == GID_LAURABOW2) {  			// The floppy of version needs the open and changeState selectors set to match up with the -			// CD version's workarounds - bugs #3035694 and #3036291 +			// CD version's workarounds - bugs #3035694, #3036291 and #3041257  			if (names.size() < 190)  				names.resize(190); +			names[110] = "init";  			names[144] = "changeState";  			names[189] = "open";  		}  | 
