some more indentation fixed

This commit is contained in:
Siddharth 2013-10-28 16:58:46 +05:30
parent fce408ad81
commit c7bb50ef00
2 changed files with 6 additions and 6 deletions

View file

@ -485,13 +485,13 @@ void EmuScreen::update(InputState &input) {
float delta_x = tiltInputCurve(normalized_input_x * 2.0 * (g_Config.iTiltSensitivityX)) ;
//if the invert is enabled, invert the motion
if (g_Config.bInvertTiltX){
if (g_Config.bInvertTiltX) {
delta_x *= -1;
}
float delta_y = tiltInputCurve(normalized_input_y * 2.0 * (g_Config.iTiltSensitivityY)) ;
if (g_Config.bInvertTiltY){
if (g_Config.bInvertTiltY) {
delta_y *= -1;
}