From e43ac64e5a090969f30faecc52c600f2248c9466 Mon Sep 17 00:00:00 2001 From: Iwan Timmer Date: Wed, 19 Mar 2014 19:53:02 +0100 Subject: [PATCH] Use hex instead of decimal in EvdevConstants --- src/com/limelight/input/EvdevConstants.java | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/com/limelight/input/EvdevConstants.java b/src/com/limelight/input/EvdevConstants.java index 8f80fc4..7db0cdd 100644 --- a/src/com/limelight/input/EvdevConstants.java +++ b/src/com/limelight/input/EvdevConstants.java @@ -150,14 +150,15 @@ public class EvdevConstants { public static final short ABS_THROTTLE = 0x06; public static final short ABS_RUDDER = 0x07; - public static final short BTN_THROTTLE = 311; - public static final short BTN_RUDDER = 312; public static final short BTN_SOUTH = 0x130; public static final short BTN_EAST = 0x131; public static final short BTN_NORTH = 0x133; public static final short BTN_WEST = 0x134; + public static final short BTN_THROTTLE = 0x137; + public static final short BTN_RUDDER = 0x138; + public static final short BTN_SELECT = 0x13a; public static final short BTN_START = 0x13b; public static final short BTN_MODE = 0x13c;