Merge pull request #115 from neutralinsomniac/use_movement_play_alarm_in_countdown_face

Make countdown face use movement_play_alarm() instead of movement_play_signal()
This commit is contained in:
joeycastillo 2022-10-31 01:06:08 -05:00 committed by GitHub
commit 214234a34f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -95,7 +95,7 @@ static void reset(countdown_state_t *state) {
}
static void ring(countdown_state_t *state) {
movement_play_signal();
movement_play_alarm();
reset(state);
}