aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--xbmc/android/activity/EventLoop.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/xbmc/android/activity/EventLoop.cpp b/xbmc/android/activity/EventLoop.cpp
index 155b82e274..7c19a73004 100644
--- a/xbmc/android/activity/EventLoop.cpp
+++ b/xbmc/android/activity/EventLoop.cpp
@@ -146,8 +146,7 @@ int32_t CEventLoop::processInput(AInputEvent* event)
if (m_inputHandler->onJoyStickKeyEvent(event))
return true;
}
- if (source & AINPUT_SOURCE_CLASS_BUTTON)
- rtn = m_inputHandler->onKeyboardEvent(event);
+ rtn = m_inputHandler->onKeyboardEvent(event);
break;
case AINPUT_EVENT_TYPE_MOTION:
switch(source)