diff options
author | Paul Gilbert | 2009-07-16 04:06:35 +0000 |
---|---|---|
committer | Paul Gilbert | 2009-07-16 04:06:35 +0000 |
commit | b04e3e79406031001cd80b40fb21b8f2ca0c5af8 (patch) | |
tree | ccb9c97352a4156f2f27bad8b9d0516adc5ef987 /engines | |
parent | aeb2aa6630b49a89992e4f317610b3275ee80ed6 (diff) | |
download | scummvm-rg350-b04e3e79406031001cd80b40fb21b8f2ca0c5af8.tar.gz scummvm-rg350-b04e3e79406031001cd80b40fb21b8f2ca0c5af8.tar.bz2 scummvm-rg350-b04e3e79406031001cd80b40fb21b8f2ca0c5af8.zip |
Added no blocking fix for Present Outside Inn scene as well
svn-id: r42522
Diffstat (limited to 'engines')
-rw-r--r-- | engines/tinsel/pcode.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/engines/tinsel/pcode.cpp b/engines/tinsel/pcode.cpp index 581c999848..8f905916ad 100644 --- a/engines/tinsel/pcode.cpp +++ b/engines/tinsel/pcode.cpp @@ -128,8 +128,11 @@ const WorkaroundEntry workaroundList[] = { // In DW1-GRA, Rincewind exiting the Inn is blocked by the luggage. Whilst you can then move // into walkable areas, saving and restoring the game, it will error if you try to move. - // This fragment turns off NPC blocking for the Outside Inn room so that the luggage won't block + // This fragment turns off NPC blocking for the Outside Inn rooms so that the luggage won't block + // Past Outside Inn {TINSEL_V1, false, 444622076, 0, fragment2_size, fragment2}, + // Present Outside Inn + {TINSEL_V1, false, 352600876, 0, fragment2_size, fragment2}, {TINSEL_V0, false, 0, 0, 0, NULL} }; |