Fixed clearing paddle on fast press

This commit is contained in:
David Volovskiy
2025-12-25 09:25:47 -05:00
parent 90e99f8957
commit cac1f50e8d

View File

@ -275,6 +275,8 @@ static void update_paddle(void) {
case PADDLE_EXTENDING:
if (!game_state.moving_from_tap && !HAL_GPIO_BTN_ALARM_read()) {
game_state.paddle_pos = PADDLE_RETRACTED;
watch_display_character(' ', 8);
game_state.moving_from_tap = false;
} else {
game_state.paddle_pos = PADDLE_EXTENDED;
}