From: David Volovskiy Date: Sun, 21 Dec 2025 18:22:43 +0000 (-0500) Subject: sound effect on hit X-Git-Url: https://git.earman.xyz/?a=commitdiff_plain;h=2c3259b2e372c7a360752aaa71e7870d80527f05;p=sensor-watch.git sound effect on hit --- diff --git a/watch-faces/complication/ping_face.c b/watch-faces/complication/ping_face.c index 414ab8e..4f80c8d 100644 --- a/watch-faces/complication/ping_face.c +++ b/watch-faces/complication/ping_face.c @@ -461,6 +461,7 @@ static void update_game(ping_state_t *state) { display_lose_screen(state); } else if (game_result == RESULT_HIT) { add_to_score(state); + watch_buzzer_play_note(BUZZER_NOTE_C5, 60); } }