Skip to content

Commit

Permalink
ACCESS: Fix to restrict river canoe to 7 allowable 'lanes'
Browse files Browse the repository at this point in the history
  • Loading branch information
dreammaster committed Dec 13, 2014
1 parent bfbce8c commit abecac9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion engines/access/amazon/amazon_scripts.cpp
Expand Up @@ -1625,7 +1625,7 @@ void AmazonScripts::moveCanoe2() {
_game->_canoeYPos += _game->_canoeDir;

if (++_game->_canoeMoveCount == 5) {
_game->_canoeYPos += _game->_canoeDir;
_game->_canoeLane += _game->_canoeDir;
_game->_canoeDir = 0;
}
}
Expand Down

0 comments on commit abecac9

Please sign in to comment.