diff options
| author | Filippos Karapetis | 2010-08-06 23:56:19 +0000 | 
|---|---|---|
| committer | Filippos Karapetis | 2010-08-06 23:56:19 +0000 | 
| commit | cb0aa8679828709b4a7fb8756f1d9d6685cc6b54 (patch) | |
| tree | 9cf7635d71086f7eea8f511822516930d3b17196 | |
| parent | ab0d57d73d434c3523e5b44ed5f4ce95b895c8a0 (diff) | |
| download | scummvm-rg350-cb0aa8679828709b4a7fb8756f1d9d6685cc6b54.tar.gz scummvm-rg350-cb0aa8679828709b4a7fb8756f1d9d6685cc6b54.tar.bz2 scummvm-rg350-cb0aa8679828709b4a7fb8756f1d9d6685cc6b54.zip | |
SCI: Fixed 2 SQ1 script bugs (#3040894 and #3040905)
svn-id: r51815
| -rw-r--r-- | engines/sci/engine/workarounds.cpp | 2 | 
1 files changed, 2 insertions, 0 deletions
| diff --git a/engines/sci/engine/workarounds.cpp b/engines/sci/engine/workarounds.cpp index 5406e4fedc..946182b0c3 100644 --- a/engines/sci/engine/workarounds.cpp +++ b/engines/sci/engine/workarounds.cpp @@ -246,6 +246,8 @@ const SciWorkaroundEntry kFindKey_workarounds[] = {  const SciWorkaroundEntry kGraphDrawLine_workarounds[] = {  	{ GID_ISLANDBRAIN,   300,   300,  0,         "dudeViewer", "show",           -1,    0, { WORKAROUND_STILLCALL, 0 } }, // when looking at the gene explanation chart, gets called with 1 extra parameter  	{ GID_SQ1,            43,    43,  0,        "someoneDied", "changeState",    -1,    0, { WORKAROUND_STILLCALL, 0 } }, // when ordering beer, gets called with 1 extra parameter +	{ GID_SQ1,            71,    71,  0,       "destroyXenon", "changeState",    -1,    0, { WORKAROUND_STILLCALL, 0 } }, // during the Xenon destruction cutscene (which results in death), gets called with 1 extra parameter - bug #3040894 +	{ GID_SQ1,            53,    53,  0,           "blastEgo", "changeState",    -1,    0, { WORKAROUND_STILLCALL, 0 } }, // when Roger is found and zapped by the cleaning robot, gets called with 1 extra parameter - bug #3040905  	SCI_WORKAROUNDENTRY_TERMINATOR  }; | 
