Remove relative checking which is not supported currently

This commit is contained in:
MrMugame 2024-03-27 16:08:39 +01:00
parent cad6902e91
commit c2c8b6861c

View File

@ -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)