summaryrefslogtreecommitdiff
path: root/Source/Core/InputCommon/ControllerInterface/DInput
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/DInput
parent2b6a1ee4d87a80418ade913e15745d78309f7f67 (diff)
InputCommon: Constify Device::Input::IsDetectable function.
Diffstat (limited to 'Source/Core/InputCommon/ControllerInterface/DInput')
-rw-r--r--Source/Core/InputCommon/ControllerInterface/DInput/DInputKeyboardMouse.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/InputCommon/ControllerInterface/DInput/DInputKeyboardMouse.h b/Source/Core/InputCommon/ControllerInterface/DInput/DInputKeyboardMouse.h
index 711c9461e6..0ae81fb6be 100644
--- a/Source/Core/InputCommon/ControllerInterface/DInput/DInputKeyboardMouse.h
+++ b/Source/Core/InputCommon/ControllerInterface/DInput/DInputKeyboardMouse.h
@@ -69,7 +69,7 @@ private:
{
}
std::string GetName() const override;
- bool IsDetectable() override { return false; }
+ bool IsDetectable() const override { return false; }
ControlState GetState() const override;
private: