This commit is contained in:
Xuan Son Nguyen 2026-01-27 17:01:57 +01:00
parent a8f8525bc0
commit 485e27a017

View File

@ -64,9 +64,7 @@ bool MappedInputManager::mapButton(const Button button, bool (HalGPIO::*fn)(uint
bool MappedInputManager::wasPressed(const Button button) const { return mapButton(button, &HalGPIO::wasPressed); }
bool MappedInputManager::wasReleased(const Button button) const {
return mapButton(button, &HalGPIO::wasReleased);
}
bool MappedInputManager::wasReleased(const Button button) const { return mapButton(button, &HalGPIO::wasReleased); }
bool MappedInputManager::isPressed(const Button button) const { return mapButton(button, &HalGPIO::isPressed); }