diff options
author | Paul Gilbert | 2014-11-08 18:12:52 -0500 |
---|---|---|
committer | Paul Gilbert | 2014-12-12 22:25:14 -0500 |
commit | e7818639afd72d861c3ed985bb8aeb4f685e5042 (patch) | |
tree | 023ffbe07b3dd373bfb77d3b2ce5c9edd5a2c787 /engines/access/amazon | |
parent | fddff687da7b7f9eb2156a84407794c44978caa8 (diff) | |
download | scummvm-rg350-e7818639afd72d861c3ed985bb8aeb4f685e5042.tar.gz scummvm-rg350-e7818639afd72d861c3ed985bb8aeb4f685e5042.tar.bz2 scummvm-rg350-e7818639afd72d861c3ed985bb8aeb4f685e5042.zip |
ACCESS: Workaround not being able to leave scene 9 in Amazon to the south
Diffstat (limited to 'engines/access/amazon')
-rw-r--r-- | engines/access/amazon/amazon_room.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/engines/access/amazon/amazon_room.cpp b/engines/access/amazon/amazon_room.cpp index 96d34e70bb..ec90fc6295 100644 --- a/engines/access/amazon/amazon_room.cpp +++ b/engines/access/amazon/amazon_room.cpp @@ -177,6 +177,11 @@ void AmazonRoom::mainAreaClick() { } } + // WORKAROUND: In Amazon room 9, you can't leave the screen to the south due + // to not being able to click a Y position that's high enough + if (pt.y > 178) + pt.y = 200; + _vm->_player->_moveTo = pt; _vm->_player->_playerMove = true; } else if (mousePos.x >= _vm->_screen->_windowXAdd && |