Skip to content

Commit

Permalink
ACCESS: Refine scene 9 workaround to stop movement problems on ship
Browse files Browse the repository at this point in the history
  • Loading branch information
dreammaster committed Dec 13, 2014
1 parent f1b99b0 commit 8eeb5bd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion engines/access/amazon/amazon_room.cpp
Expand Up @@ -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;
Expand Down

0 comments on commit 8eeb5bd

Please sign in to comment.