diff options
author | punto- <ariel@godotengine.org> | 2016-01-27 04:32:27 -0300 |
---|---|---|
committer | punto- <ariel@godotengine.org> | 2016-01-27 04:32:27 -0300 |
commit | 93bef9b9b176a58372ac6e765378fce03e65e39a (patch) | |
tree | 88abd22b6e7613d01858072d988da07eb210a8af /platform/x11/joystick_linux.h | |
parent | 1c76e503840870a9bfa164ef990cc2d8bdcd7aac (diff) | |
parent | 29353808f0391f78627c43090f1bff882d56f11e (diff) |
Merge pull request #3471 from Hinsbart/remove_libevdev
remove dependancy on libevdev
Diffstat (limited to 'platform/x11/joystick_linux.h')
-rw-r--r-- | platform/x11/joystick_linux.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/platform/x11/joystick_linux.h b/platform/x11/joystick_linux.h index ee9bd0352a..7f96e3451f 100644 --- a/platform/x11/joystick_linux.h +++ b/platform/x11/joystick_linux.h @@ -61,9 +61,10 @@ private: int fd; String devpath; - struct libevdev *dev; + input_absinfo *abs_info[MAX_ABS]; Joystick(); + ~Joystick(); void reset(); }; |