diff options
| author | Martin Kiewitz | 2010-06-24 17:10:26 +0000 | 
|---|---|---|
| committer | Martin Kiewitz | 2010-06-24 17:10:26 +0000 | 
| commit | b8e2e8e5ddf21a9b27bbc74e6658b637b092de9f (patch) | |
| tree | 342eac9a90307622aebf211857dc3d2fd66fa8ec | |
| parent | 00e88f15e3772eca43c7a8034bc4a31806eeb1dc (diff) | |
| download | scummvm-rg350-b8e2e8e5ddf21a9b27bbc74e6658b637b092de9f.tar.gz scummvm-rg350-b8e2e8e5ddf21a9b27bbc74e6658b637b092de9f.tar.bz2 scummvm-rg350-b8e2e8e5ddf21a9b27bbc74e6658b637b092de9f.zip | |
SCI: added uninitialized read for room 720 in lsl1
svn-id: r50222
| -rw-r--r-- | engines/sci/engine/vm.cpp | 1 | 
1 files changed, 1 insertions, 0 deletions
| diff --git a/engines/sci/engine/vm.cpp b/engines/sci/engine/vm.cpp index 30c3fd18d4..d870eb96a6 100644 --- a/engines/sci/engine/vm.cpp +++ b/engines/sci/engine/vm.cpp @@ -187,6 +187,7 @@ static const UninitializedReadWorkaround uninitializedReadWorkarounds[] = {  	{ "laurabow2",		 24, "gcWin", "open",		5, 0xf }, // is used as priority for game menu  	{ "freddypharkas",	 24, "gcWin", "open",		5, 0xf }, // is used as priority for game menu  	{ "freddypharkas",	 31, "quitWin", "open",		5, 0xf }, // is used as priority for game menu +	{ "lsl1sci",		720, "rm720", "init",		0,	 0 }, // age check room  	{ "islandbrain",	140, "piece", "init",		3,   1 }, // some initialization variable. bnt is done on it, and it should be non-0  	{ NULL,				 -1, NULL, NULL,			0, 0 }  }; | 
