diff options
author | endolf <[email protected]> | 2005-07-03 20:05:34 +0000 |
---|---|---|
committer | endolf <[email protected]> | 2005-07-03 20:05:34 +0000 |
commit | 0148692068637a1e39beb01728c96f7f548381d1 (patch) | |
tree | 1cb0afbe916c750a265f20c6be6b01c25828e9b8 /plugins/linux/src/native/JoystickDevice.cpp | |
parent | 41dc35be2b5b581e6cf85fa6ade392a149c09904 (diff) |
Linux rumbler support
IT DOES NOT WORK YET though.
I'm in contact with the kernel module developers as I think it's a kernel bug
git-svn-id: file:///home/sven/projects/JOGL/git-svn/svn-server-sync/jinput/trunk@104 e343933a-64c8-49c5-92b1-88f2ce3e89e8
Diffstat (limited to 'plugins/linux/src/native/JoystickDevice.cpp')
-rw-r--r-- | plugins/linux/src/native/JoystickDevice.cpp | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/plugins/linux/src/native/JoystickDevice.cpp b/plugins/linux/src/native/JoystickDevice.cpp index 8f6521f..5adab3e 100644 --- a/plugins/linux/src/native/JoystickDevice.cpp +++ b/plugins/linux/src/native/JoystickDevice.cpp @@ -186,3 +186,11 @@ int JoystickDevice::getAbsAxisMaximum(int axisNumber) { int JoystickDevice::getAbsAxisFuzz(int axisNumber) { return 0; } + +bool JoystickDevice::getFFEnabled() { + return false; +} + +void JoystickDevice::rumble(float force) { + return; +} |