aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--engines/access/amazon/amazon_room.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/access/amazon/amazon_room.cpp b/engines/access/amazon/amazon_room.cpp
index 762daf06d6..a942ed3ba8 100644
--- a/engines/access/amazon/amazon_room.cpp
+++ b/engines/access/amazon/amazon_room.cpp
@@ -182,7 +182,7 @@ 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)
+ if (_vm->_screen->_scrollRow == 0 && pt.y > 178)
pt.y = 200;
_vm->_player->_moveTo = pt;