Typo fix to avoid divide by zero.

pull/24/head
cc9cii 11 years ago
parent ce8d327e8e
commit 5539c75ef0

@ -385,7 +385,7 @@ namespace ICS
{
ctrl->setIgnoreAutoReverse(true);
float axisRange = SDL_JOY_AXIS_MAX - SDL_JOY_AXIS_MAX;
float axisRange = SDL_JOY_AXIS_MAX - SDL_JOY_AXIS_MIN;
float valDisplaced = (float)(evt.value - SDL_JOY_AXIS_MIN);
if(joystickBinderItem.direction == Control::INCREASE)

Loading…
Cancel
Save