aboutsummaryrefslogtreecommitdiff
path: root/engines/titanic/star_control/star_view.cpp
diff options
context:
space:
mode:
authorPaul Gilbert2017-08-06 21:23:54 -0400
committerGitHub2017-08-06 21:23:54 -0400
commitb818656a851b2f2b08ddf0004d1ce8ef760ce184 (patch)
tree492fab2bba1d6a7a65e4612f92d5ce3650292463 /engines/titanic/star_control/star_view.cpp
parente830ddbc70c84060de2cb78e315990850e504b06 (diff)
parentc4751fc6110154951df0f14b9dbfd9ca40d0db6c (diff)
downloadscummvm-rg350-b818656a851b2f2b08ddf0004d1ce8ef760ce184.tar.gz
scummvm-rg350-b818656a851b2f2b08ddf0004d1ce8ef760ce184.tar.bz2
scummvm-rg350-b818656a851b2f2b08ddf0004d1ce8ef760ce184.zip
Merge pull request #983 from dafioram/titanic_starview_addReverse
TITANIC: Change Starview slowdown to reverse
Diffstat (limited to 'engines/titanic/star_control/star_view.cpp')
-rw-r--r--engines/titanic/star_control/star_view.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/titanic/star_control/star_view.cpp b/engines/titanic/star_control/star_view.cpp
index a5028374ff..465e974d44 100644
--- a/engines/titanic/star_control/star_view.cpp
+++ b/engines/titanic/star_control/star_view.cpp
@@ -187,7 +187,7 @@ bool CStarView::KeyCharMsg(int key, CErrorCode *errorCode) {
case Common::KEYCODE_SEMICOLON:
if (matchedIndex == -1) {
- _camera.increaseSpeed();
+ _camera.increaseForwardSpeed();
errorCode->set();
return true;
}
@@ -195,7 +195,7 @@ bool CStarView::KeyCharMsg(int key, CErrorCode *errorCode) {
case Common::KEYCODE_PERIOD:
if (matchedIndex == -1) {
- _camera.decreaseSpeed();
+ _camera.increaseBackwardSpeed();
errorCode->set();
return true;
}