summaryrefslogtreecommitdiff
path: root/Source/Core/InputCommon/ControllerInterface/CoreDevice.h
diff options
context:
space:
mode:
authorMartino Fontana <tinozzo123@gmail.com>2023-10-28 16:32:01 +0200
committerMartino Fontana <tinozzo123@gmail.com>2024-01-10 12:20:07 +0100
commit0ab2bc22871128fc97b184311616a1d1d1fd6a64 (patch)
tree2dee923d67a19256c0c7eb92b3674e0db331081a /Source/Core/InputCommon/ControllerInterface/CoreDevice.h
parent115ad825813d76e3ac8bd8aaab0d110c3fe378ad (diff)
ControllerInterface: Make FullAnalogSurface inherit IsDetectable()
Diffstat (limited to 'Source/Core/InputCommon/ControllerInterface/CoreDevice.h')
-rw-r--r--Source/Core/InputCommon/ControllerInterface/CoreDevice.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/Source/Core/InputCommon/ControllerInterface/CoreDevice.h b/Source/Core/InputCommon/ControllerInterface/CoreDevice.h
index 1667b42a00..4ed5866eff 100644
--- a/Source/Core/InputCommon/ControllerInterface/CoreDevice.h
+++ b/Source/Core/InputCommon/ControllerInterface/CoreDevice.h
@@ -163,6 +163,7 @@ protected:
FullAnalogSurface(Input* low, Input* high) : m_low(*low), m_high(*high) {}
ControlState GetState() const override;
std::string GetName() const override;
+ bool IsDetectable() const override;
bool IsMatchingName(std::string_view name) const override;
private: