some more indentation fixed
This commit is contained in:
parent
fce408ad81
commit
c7bb50ef00
2 changed files with 6 additions and 6 deletions
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue