summaryrefslogtreecommitdiff
path: root/Source/Core/InputCommon/ControllerInterface/Xlib
diff options
context:
space:
mode:
authorJordan Woyak <jordan.woyak@gmail.com>2020-02-22 10:27:43 -0600
committerJordan Woyak <jordan.woyak@gmail.com>2020-02-22 10:27:43 -0600
commitda12f3eebc47f3928f7a8e9176549267e579df68 (patch)
treee81cb63c817c394c554d7268354120f2a40e88cf /Source/Core/InputCommon/ControllerInterface/Xlib
parent2b6a1ee4d87a80418ade913e15745d78309f7f67 (diff)
InputCommon: Constify Device::Input::IsDetectable function.
Diffstat (limited to 'Source/Core/InputCommon/ControllerInterface/Xlib')
-rw-r--r--Source/Core/InputCommon/ControllerInterface/Xlib/XInput2.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/Core/InputCommon/ControllerInterface/Xlib/XInput2.h b/Source/Core/InputCommon/ControllerInterface/Xlib/XInput2.h
index 52c424a3e6..f8e1e734c9 100644
--- a/Source/Core/InputCommon/ControllerInterface/Xlib/XInput2.h
+++ b/Source/Core/InputCommon/ControllerInterface/Xlib/XInput2.h
@@ -63,7 +63,7 @@ private:
{
public:
std::string GetName() const override { return name; }
- bool IsDetectable() override { return false; }
+ bool IsDetectable() const override { return false; }
Cursor(u8 index, bool positive, const float* cursor);
ControlState GetState() const override;
@@ -78,7 +78,7 @@ private:
{
public:
std::string GetName() const override { return name; }
- bool IsDetectable() override { return false; }
+ bool IsDetectable() const override { return false; }
Axis(u8 index, bool positive, const float* axis);
ControlState GetState() const override;