Remove relative checking which is not supported currently
This commit is contained in:
parent
cad6902e91
commit
c2c8b6861c
|
|
@ -1558,9 +1558,6 @@ static void PollGamepadEvents(void)
|
|||
|
||||
TRACELOG(LOG_DEBUG, "DRM: Gamepad %i axis: %i, value: %i", i, platform.gamepadAbsAxisMap[i][event.code], event.value);
|
||||
|
||||
if (event.type == EV_REL) CORE.Input.Gamepad.axisState[i][event.code] += (float)event.value;
|
||||
else
|
||||
{
|
||||
int min = platform.gamepadAbsAxisRange[i][event.code][0];
|
||||
int range = platform.gamepadAbsAxisRange[i][event.code][1];
|
||||
|
||||
|
|
@ -1569,7 +1566,6 @@ static void PollGamepadEvents(void)
|
|||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
static void PollMouseEvents(void)
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user