[Scummvm-cvs-logs] scummvm master -> 808a2045b4a3b210f1f2512617fe1be41c5dc460
RichieSams
adastley at gmail.com
Fri Dec 19 18:20:41 CET 2014
This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .
Summary:
808a2045b4 ZVISION: Fix code mis-alignment created from variable rename
Commit: 808a2045b4a3b210f1f2512617fe1be41c5dc460
https://github.com/scummvm/scummvm/commit/808a2045b4a3b210f1f2512617fe1be41c5dc460
Author: Adrian Astley (adastley at gmail.com)
Date: 2014-12-19T11:20:01-06:00
Commit Message:
ZVISION: Fix code mis-alignment created from variable rename
Changed paths:
engines/zvision/core/events.cpp
diff --git a/engines/zvision/core/events.cpp b/engines/zvision/core/events.cpp
index fe357c2..6cf0ae5 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:
More information about the Scummvm-git-logs
mailing list