diff options
| author | 2011-06-29 21:19:05 -0700 | |
|---|---|---|
| committer | 2011-06-29 21:19:05 -0700 | |
| commit | 2e45fb6f951d0e0c68d4211fe68108d2230814bc (patch) | |
| tree | 1219299e2e1d4ea119dc1f244e19d04adfd6995b /services/input/InputReader.cpp | |
| parent | 6d18419a3c4a37213737d6372930b720b566b70e (diff) | |
Fix joystick and trackpad regression.
Change-Id: I33b6756f95a6b0725ffa210f341da3c98426491b
Diffstat (limited to 'services/input/InputReader.cpp')
| -rw-r--r-- | services/input/InputReader.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/services/input/InputReader.cpp b/services/input/InputReader.cpp index 014f9624aa33..82c3af370ea8 100644 --- a/services/input/InputReader.cpp +++ b/services/input/InputReader.cpp @@ -922,7 +922,7 @@ void InputDevice::process(const RawEvent* rawEvents, size_t count) { for (const RawEvent* rawEvent = rawEvents; count--; rawEvent++) { #if DEBUG_RAW_EVENTS LOGD("Input event: device=%d type=0x%04x scancode=0x%04x " - "keycode=0x%04x value=0x%04x flags=0x%08x", + "keycode=0x%04x value=0x%08x flags=0x%08x", rawEvent->deviceId, rawEvent->type, rawEvent->scanCode, rawEvent->keyCode, rawEvent->value, rawEvent->flags); #endif |