remove wrong const

This commit is contained in:
2023-12-10 17:47:41 +01:00
parent d90a38eebb
commit 7466bcacff
+1 -1
View File
@@ -25,7 +25,7 @@ class Gamepad{
bool isPressed(Button button); bool isPressed(Button button);
bool isPressedLast(Button button) const; bool isPressedLast(Button button) const;
uint16_t getState() const; uint16_t getState();
uint16_t getLastState() const { return this->lastState; } uint16_t getLastState() const { return this->lastState; }
static bool isPressed(uint16_t input, Button button); static bool isPressed(uint16_t input, Button button);