summaryrefslogtreecommitdiff
path: root/Source/Core/InputCommon/ControllerInterface
diff options
context:
space:
mode:
authorzackhow <zackhow@gmail.com>2018-10-05 16:59:17 -0400
committerzackhow <zackhow@gmail.com>2019-01-19 23:21:33 -0500
commit47d6406fd4492d46613dbb107bc3deb36fd3254d (patch)
tree6d8a454dd882d27a2a956d8c3522f13a7d709211 /Source/Core/InputCommon/ControllerInterface
parent3627ef8a0489765eb10ab29a7988866b52493239 (diff)
Android: Add touch to move pointer in overlay
Diffstat (limited to 'Source/Core/InputCommon/ControllerInterface')
-rw-r--r--Source/Core/InputCommon/ControllerInterface/Android/Android.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/Source/Core/InputCommon/ControllerInterface/Android/Android.h b/Source/Core/InputCommon/ControllerInterface/Android/Android.h
index deb23539ce..59919982ef 100644
--- a/Source/Core/InputCommon/ControllerInterface/Android/Android.h
+++ b/Source/Core/InputCommon/ControllerInterface/Android/Android.h
@@ -30,6 +30,7 @@ private:
{
public:
std::string GetName() const;
+ bool IsDetectable() override { return false; }
Axis(int padID, ButtonManager::ButtonType index, float neg = 1.0f)
: _padID(padID), _index(index), _neg(neg)
{