aboutsummaryrefslogtreecommitdiff
path: root/engines
diff options
context:
space:
mode:
authorAdrian Astley2014-12-19 11:20:01 -0600
committerAdrian Astley2014-12-19 11:20:01 -0600
commit808a2045b4a3b210f1f2512617fe1be41c5dc460 (patch)
tree2c7b41cc2d1a898e79f19c53ca1202bdde6b449e /engines
parentacb172251aa7401f43308ebcac9f30bef3aa40f5 (diff)
downloadscummvm-rg350-808a2045b4a3b210f1f2512617fe1be41c5dc460.tar.gz
scummvm-rg350-808a2045b4a3b210f1f2512617fe1be41c5dc460.tar.bz2
scummvm-rg350-808a2045b4a3b210f1f2512617fe1be41c5dc460.zip
ZVISION: Fix code mis-alignment created from variable rename
Diffstat (limited to 'engines')
-rw-r--r--engines/zvision/core/events.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/engines/zvision/core/events.cpp b/engines/zvision/core/events.cpp
index fe357c263b..6cf0ae5d0d 100644
--- a/engines/zvision/core/events.cpp
+++ b/engines/zvision/core/events.cpp
@@ -195,16 +195,16 @@ void ZVision::processEvents() {
case Common::KEYCODE_RIGHT:
if (_renderManager->getRenderTable()->getRenderState() == RenderTable::PANORAMA)
_keyboardVelocity = (_event.kbd.keycode == Common::KEYCODE_LEFT ?
- -_scriptManager->getStateValue(StateKey_KbdRotateSpeed) :
- _scriptManager->getStateValue(StateKey_KbdRotateSpeed)) * 2;
+ -_scriptManager->getStateValue(StateKey_KbdRotateSpeed) :
+ _scriptManager->getStateValue(StateKey_KbdRotateSpeed)) * 2;
break;
case Common::KEYCODE_UP:
case Common::KEYCODE_DOWN:
if (_renderManager->getRenderTable()->getRenderState() == RenderTable::TILT)
_keyboardVelocity = (_event.kbd.keycode == Common::KEYCODE_UP ?
- -_scriptManager->getStateValue(StateKey_KbdRotateSpeed) :
- _scriptManager->getStateValue(StateKey_KbdRotateSpeed)) * 2;
+ -_scriptManager->getStateValue(StateKey_KbdRotateSpeed) :
+ _scriptManager->getStateValue(StateKey_KbdRotateSpeed)) * 2;
break;
default: