forked from mirror/openmw-tes3mp
Typo fix to avoid divide by zero.
This commit is contained in:
parent
ce8d327e8e
commit
5539c75ef0
1 changed files with 1 additions and 1 deletions
|
@ -385,7 +385,7 @@ namespace ICS
|
||||||
{
|
{
|
||||||
ctrl->setIgnoreAutoReverse(true);
|
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);
|
float valDisplaced = (float)(evt.value - SDL_JOY_AXIS_MIN);
|
||||||
|
|
||||||
if(joystickBinderItem.direction == Control::INCREASE)
|
if(joystickBinderItem.direction == Control::INCREASE)
|
||||||
|
|
Loading…
Reference in a new issue