From 8eeb5bd8e6a4f1e3ca7ff8f10c7487ebc75b6426 Mon Sep 17 00:00:00 2001 From: Paul Gilbert Date: Mon, 24 Nov 2014 19:18:30 -0500 Subject: ACCESS: Refine scene 9 workaround to stop movement problems on ship --- engines/access/amazon/amazon_room.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'engines/access/amazon') 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; -- cgit v1.2.3