Skip to content

Commit

Permalink
ACCESS: Fix progressing within the river
Browse files Browse the repository at this point in the history
  • Loading branch information
dreammaster committed Dec 13, 2014
1 parent 35922c2 commit b20c755
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions engines/access/amazon/amazon_logic.cpp
Expand Up @@ -1497,10 +1497,10 @@ void River::checkRiverPan() {

bool River::riverJumpTest() {
if (_vm->_screen->_scrollCol == 120 || _vm->_screen->_scrollCol == 60 || _vm->_screen->_scrollCol == 0) {
int val = _mapPtr[0];
++_mapPtr;
int val = *++_mapPtr;
if (val == 0xFF)
return true;

_oldScrollCol = _vm->_screen->_scrollCol;

if (val == 0) {
Expand Down

0 comments on commit b20c755

Please sign in to comment.