summaryrefslogtreecommitdiff
path: root/Source/Core/InputCommon/ControllerInterface/DInput
diff options
context:
space:
mode:
authorMat M <mathew1800@gmail.com>2020-02-22 16:50:27 -0500
committerGitHub <noreply@github.com>2020-02-22 16:50:27 -0500
commitedad018213186fa9cae6fe0785462377afa02bac (patch)
treee81cb63c817c394c554d7268354120f2a40e88cf /Source/Core/InputCommon/ControllerInterface/DInput
parent2b6a1ee4d87a80418ade913e15745d78309f7f67 (diff)
parentda12f3eebc47f3928f7a8e9176549267e579df68 (diff)
Merge pull request #8638 from jordan-woyak/is-detectable-constify
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: