From a809a7231dec3d7bccd5f29ed41e9d4d57e99882 Mon Sep 17 00:00:00 2001 From: RogueMaster Date: Fri, 16 Sep 2022 17:26:51 -0400 Subject: [PATCH] Update snake_game.c --- applications/plugins/snake_game/snake_game.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/applications/plugins/snake_game/snake_game.c b/applications/plugins/snake_game/snake_game.c index 6da97764f..bb1766d5a 100644 --- a/applications/plugins/snake_game/snake_game.c +++ b/applications/plugins/snake_game/snake_game.c @@ -294,7 +294,7 @@ static void snake_game_process_game_step(SnakeState* const snake_state, Notifica bool eatFruit = (next_step.x == snake_state->fruit.x) && (next_step.y == snake_state->fruit.y); if(eatFruit) { - notification_message(notify, &sequence_short_vibro_and_sound); + notification_message(notify, &sequence_short_vibro_and_rgb); snake_state->len++; if(snake_state->len >= MAX_SNAKE_LEN) {