summaryrefslogtreecommitdiff
path: root/Source/Core/InputCommon/ControllerInterface
diff options
context:
space:
mode:
authorJMC47 <JMC4789@gmail.com>2019-01-24 20:02:23 -0500
committerGitHub <noreply@github.com>2019-01-24 20:02:23 -0500
commitddb1fbf7017644666f0670d3d8de1b05787c8f96 (patch)
tree68930de37be124b0f1d8f92db9c393aad7de9cb7 /Source/Core/InputCommon/ControllerInterface
parentf64b30156f83a4d3c70c2cc0ebd649967788f990 (diff)
parente15af5077f8c9605248a58e3172c8c1c45bd8589 (diff)
Merge pull request #7500 from zackhow/pointer
Android: Add IR pointer control to touch 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)
{