diff options
| author | 2010-06-30 16:10:35 -0700 | |
|---|---|---|
| committer | 2010-07-13 17:04:57 -0700 | |
| commit | 8575a87b0d61d21c286321afdf193f4fac53d681 (patch) | |
| tree | 3f87b3e49aaca93f76f4b739c904d416296d26c1 /libs/ui/InputDispatcher.cpp | |
| parent | 837a0d0fb2c3fba8082d47d04cb6120af1eb9a54 (diff) | |
Add initial gamepad support.
Change-Id: I0439648f6eb5405f200e4223c915eb3a418b32b9
Diffstat (limited to 'libs/ui/InputDispatcher.cpp')
| -rw-r--r-- | libs/ui/InputDispatcher.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libs/ui/InputDispatcher.cpp b/libs/ui/InputDispatcher.cpp index f809cba90c..c4ffce1e80 100644 --- a/libs/ui/InputDispatcher.cpp +++ b/libs/ui/InputDispatcher.cpp @@ -40,10 +40,10 @@ namespace android { // TODO, this needs to be somewhere else, perhaps in the policy static inline bool isMovementKey(int32_t keyCode) { - return keyCode == KEYCODE_DPAD_UP - || keyCode == KEYCODE_DPAD_DOWN - || keyCode == KEYCODE_DPAD_LEFT - || keyCode == KEYCODE_DPAD_RIGHT; + return keyCode == AKEYCODE_DPAD_UP + || keyCode == AKEYCODE_DPAD_DOWN + || keyCode == AKEYCODE_DPAD_LEFT + || keyCode == AKEYCODE_DPAD_RIGHT; } static inline nsecs_t now() { |