aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Gilbert2010-02-08 10:02:18 +0000
committerPaul Gilbert2010-02-08 10:02:18 +0000
commit86163d5a6c294937a7d4f231f7ff14f5b652b295 (patch)
tree98081b2da8799173f76de553df0e783d80b9df61
parentec913878377276e393ee94fc23be2101142a96c0 (diff)
downloadscummvm-rg350-86163d5a6c294937a7d4f231f7ff14f5b652b295.tar.gz
scummvm-rg350-86163d5a6c294937a7d4f231f7ff14f5b652b295.tar.bz2
scummvm-rg350-86163d5a6c294937a7d4f231f7ff14f5b652b295.zip
Script workaround fix for DW1, for being able to give the whistle back to the pirate before the parrot
svn-id: r47987
-rw-r--r--engines/tinsel/pcode.cpp15
1 files changed, 15 insertions, 0 deletions
diff --git a/engines/tinsel/pcode.cpp b/engines/tinsel/pcode.cpp
index 7fd6df78d0..3a0849f23b 100644
--- a/engines/tinsel/pcode.cpp
+++ b/engines/tinsel/pcode.cpp
@@ -136,6 +136,16 @@ const byte fragment9[] = {OP_JUMP | OPSIZE8, 123};
const int fragment9_size = 2;
const byte fragment10[] = {OP_IMM | OPSIZE16, 160 % 256, 160 / 256, OP_JUMP | OPSIZE16, 136 % 256, 136 / 256};
const int fragment10_size = 6;
+const byte fragment11[] = {OP_JMPTRUE | OPSIZE16, 1572 % 256, 1572 / 256,
+ OP_ONE, OP_LIBCALL | OPSIZE8, 14, // Re-show the cursor
+ OP_IMM | OPSIZE16, 322 % 256, 322 / 256, OP_LIBCALL | OPSIZE8, 46, // Give back the whistle
+ OP_JUMP | OPSIZE16, 1661 % 256, 1661 / 256};
+const int fragment11_size = 14;
+const byte fragment12[] = {OP_JMPTRUE | OPSIZE16, 1491 % 256, 1491 / 256,
+ OP_ONE, OP_LIBCALL | OPSIZE8, 14, // Re-show the cursor
+ OP_IMM | OPSIZE16, 322 % 256, 322 / 256, OP_LIBCALL | OPSIZE8, 46, // Give back the whistle
+ OP_JUMP | OPSIZE16, 1568 % 256, 1568 / 256};
+const int fragment12_size = 14;
const WorkaroundEntry workaroundList[] = {
// DW1-SCN: Global 206 is whether Rincewind is trying to take the book back to the present.
@@ -175,6 +185,11 @@ const WorkaroundEntry workaroundList[] = {
// DW1-GRA: Corrects text being drawn partially off-screen during the blackboard description of the Librarian
{TINSEL_V1,false, 293831402, 133, fragment10_size, fragment10},
+ // DW1-GRA/SCN: Corrects the dead-end of being able to give the whistle back to the pirate before giving him
+ // the parrot
+ {TINSEL_V1, true, 352601285, 1569, fragment11_size, fragment11},
+ {TINSEL_V1, false, 352602304, 1488, fragment12_size, fragment12},
+
{TINSEL_V0, false, 0, 0, 0, NULL}
};