summaryrefslogtreecommitdiff
path: root/Source/Core/InputCommon/ControllerInterface/Wiimote/Wiimote.cpp
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/Wiimote/Wiimote.cpp
parent2b6a1ee4d87a80418ade913e15745d78309f7f67 (diff)
InputCommon: Constify Device::Input::IsDetectable function.
Diffstat (limited to 'Source/Core/InputCommon/ControllerInterface/Wiimote/Wiimote.cpp')
-rw-r--r--Source/Core/InputCommon/ControllerInterface/Wiimote/Wiimote.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/InputCommon/ControllerInterface/Wiimote/Wiimote.cpp b/Source/Core/InputCommon/ControllerInterface/Wiimote/Wiimote.cpp
index 34a169aa83..059138e52a 100644
--- a/Source/Core/InputCommon/ControllerInterface/Wiimote/Wiimote.cpp
+++ b/Source/Core/InputCommon/ControllerInterface/Wiimote/Wiimote.cpp
@@ -48,7 +48,7 @@ public:
{
}
- bool IsDetectable() override { return Detectable; }
+ bool IsDetectable() const override { return Detectable; }
std::string GetName() const override { return m_name; }