InputCommon: Constify Device::Input::IsDetectable function.

This commit is contained in:
Jordan Woyak
2020-02-22 10:27:43 -06:00
parent 2b6a1ee4d8
commit da12f3eebc
9 changed files with 13 additions and 13 deletions

View File

@ -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;