diff options
author | Paul Gilbert | 2014-11-28 11:42:25 -0500 |
---|---|---|
committer | Paul Gilbert | 2014-12-12 22:50:24 -0500 |
commit | abecac94d4b944f1c594f6963cb308614086360a (patch) | |
tree | 1401c408aa5c2e0120c03ec6c30d5584b3174cee /engines/access | |
parent | bfbce8c6a6ac00423b47f3c3ce0f3b9a32e497ae (diff) | |
download | scummvm-rg350-abecac94d4b944f1c594f6963cb308614086360a.tar.gz scummvm-rg350-abecac94d4b944f1c594f6963cb308614086360a.tar.bz2 scummvm-rg350-abecac94d4b944f1c594f6963cb308614086360a.zip |
ACCESS: Fix to restrict river canoe to 7 allowable 'lanes'
Diffstat (limited to 'engines/access')
-rw-r--r-- | engines/access/amazon/amazon_scripts.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/access/amazon/amazon_scripts.cpp b/engines/access/amazon/amazon_scripts.cpp index 7cae5fd0ef..58491250ad 100644 --- a/engines/access/amazon/amazon_scripts.cpp +++ b/engines/access/amazon/amazon_scripts.cpp @@ -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; } } |