mirror of
https://github.com/shadowfacts/jinput-arm64.git
synced 2025-12-06 08:01:59 +01:00
I had done the mouse axis as normalised to match the windows
version, as I am about to commit changes to fix that version, I have sitch over the workings of this one too
This commit is contained in:
parent
dadac91706
commit
1b7e1217f7
|
|
@ -459,10 +459,10 @@ public class LinuxDevice extends AbstractController {
|
||||||
String name = LinuxNativeTypesMap.getRelAxisName(nativeType);
|
String name = LinuxNativeTypesMap.getRelAxisName(nativeType);
|
||||||
|
|
||||||
// This is done to be like the windows version
|
// This is done to be like the windows version
|
||||||
return new LinuxAxis(this, axisNumber, name, id, 0, true, true, 0, 0);
|
// return new LinuxAxis(this, axisNumber, name, id, 0, true, true, 0, 0);
|
||||||
|
|
||||||
//this is what should be done
|
// this is what should be done
|
||||||
// return new LinuxAxis(this, axisNumber, name, id, 0, true, false, true);
|
return new LinuxAxis(this, axisNumber, name, id, 0, true, false, true);
|
||||||
}
|
}
|
||||||
|
|
||||||
/** Create an absolute axis for the device
|
/** Create an absolute axis for the device
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue