From da12f3eebc47f3928f7a8e9176549267e579df68 Mon Sep 17 00:00:00 2001 From: Jordan Woyak Date: Sat, 22 Feb 2020 10:27:43 -0600 Subject: InputCommon: Constify Device::Input::IsDetectable function. --- .../Core/InputCommon/ControllerInterface/DInput/DInputKeyboardMouse.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Source/Core/InputCommon/ControllerInterface/DInput') 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: -- cgit v1.2.3