Fix InputDevice on distros without hires axes

This commit is contained in:
pixl 2020-08-21 21:02:24 -04:00
parent cce1275385
commit b554d32cf3
No known key found for this signature in database
GPG Key ID: 1866C148CD593B6E

View File

@ -17,7 +17,6 @@
*/ */
#include <system_error> #include <system_error>
#include <linux/input-event-codes.h>
#include "InputDevice.h" #include "InputDevice.h"
@ -93,10 +92,15 @@ uint InputDevice::toAxisCode(const std::string& name)
/* Returns -1 if axis_code is not hi-res */ /* Returns -1 if axis_code is not hi-res */
int InputDevice::getLowResAxis(const uint axis_code) int InputDevice::getLowResAxis(const uint axis_code)
{ {
/* Some systems don't have these hi-res axes */
#ifdef REL_WHEEL_HI_RES
if(axis_code == REL_WHEEL_HI_RES) if(axis_code == REL_WHEEL_HI_RES)
return REL_WHEEL; return REL_WHEEL;
#endif
#ifdef REL_HWHEEL_HI_RES
if(axis_code == REL_HWHEEL_HI_RES) if(axis_code == REL_HWHEEL_HI_RES)
return REL_HWHEEL; return REL_HWHEEL;
#endif
return -1; return -1;
} }