Use stock system icons instead of assets

This commit is contained in:
Willy-JL
2023-05-20 20:00:02 +01:00
parent 5a63c01016
commit 7f19e16d47
39 changed files with 55 additions and 94 deletions

View File

@@ -590,8 +590,7 @@ static void animation_manager_switch_to_one_shot_view(AnimationManager* animatio
View* next_view = one_shot_view_get_view(animation_manager->one_shot_view);
view_stack_remove_view(animation_manager->view_stack, prev_view);
view_stack_add_view(animation_manager->view_stack, next_view);
one_shot_view_start_animation(
animation_manager->one_shot_view, XTREME_ASSETS()->A_Levelup_128x64);
one_shot_view_start_animation(animation_manager->one_shot_view, &A_Levelup_128x64);
}
static void animation_manager_switch_to_animation_view(AnimationManager* animation_manager) {