Merge branch 'UNLEASHED' into 420

This commit is contained in:
RogueMaster
2022-12-26 16:14:07 -05:00
215 changed files with 872 additions and 972 deletions

View File

@@ -124,7 +124,7 @@ static void snake_game_update_timer_callback(FuriMessageQueue* event_queue) {
static void snake_game_init_game(SnakeState* const snake_state) {
Point p[] = {{8, 6}, {7, 6}, {6, 6}, {5, 6}, {4, 6}, {3, 6}, {2, 6}};
memcpy(snake_state->points, p, sizeof(p));
memcpy(snake_state->points, p, sizeof(p)); //-V1086
snake_state->len = 7;