summaryrefslogtreecommitdiff
path: root/Source/Core/InputCommon/ControllerInterface/Android
diff options
context:
space:
mode:
Diffstat (limited to 'Source/Core/InputCommon/ControllerInterface/Android')
-rw-r--r--Source/Core/InputCommon/ControllerInterface/Android/Android.cpp4
-rw-r--r--Source/Core/InputCommon/ControllerInterface/Android/Android.h1
2 files changed, 0 insertions, 5 deletions
diff --git a/Source/Core/InputCommon/ControllerInterface/Android/Android.cpp b/Source/Core/InputCommon/ControllerInterface/Android/Android.cpp
index e36e314294..a5e995f6cc 100644
--- a/Source/Core/InputCommon/ControllerInterface/Android/Android.cpp
+++ b/Source/Core/InputCommon/ControllerInterface/Android/Android.cpp
@@ -27,10 +27,6 @@ std::string Touchscreen::GetSource() const
return "Android";
}
-int Touchscreen::GetId() const
-{
- return _padID;
-}
Touchscreen::Touchscreen(int padID) : _padID(padID)
{
// GC
diff --git a/Source/Core/InputCommon/ControllerInterface/Android/Android.h b/Source/Core/InputCommon/ControllerInterface/Android/Android.h
index 29cc16d7ef..987aaed863 100644
--- a/Source/Core/InputCommon/ControllerInterface/Android/Android.h
+++ b/Source/Core/InputCommon/ControllerInterface/Android/Android.h
@@ -46,7 +46,6 @@ public:
Touchscreen(int padID);
~Touchscreen() {}
std::string GetName() const;
- int GetId() const;
std::string GetSource() const;
private: