Skip to content

Commit

Permalink
Changing the defult animation from normal to dexv
Browse files Browse the repository at this point in the history
  • Loading branch information
DXVVAY committed Mar 5, 2023
1 parent f6bb849 commit 3d6c554
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/FUNDING.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# These are supported funding model platforms

github: # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2]
patreon: CynthiaLabs
patreon: # Replace
open_collective: # Replace with a single Open Collective username
ko_fi: # Replace with a single Ko-fi username
tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel
Expand Down
2 changes: 1 addition & 1 deletion applications/settings/d_app/scenes/d_app_scene_main.c
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ static void d_app_scene_main_asset_pack_changed(VariableItem* item) {
DApp* app = variable_item_get_context(item);
uint8_t index = variable_item_get_current_value_index(item);
variable_item_set_current_value_text(
item, index == 0 ? "Normal" : *asset_packs_get(app->asset_packs, index - 1));
item, index == 0 ? "Dexv" : *asset_packs_get(app->asset_packs, index - 1));
strlcpy(
D_SETTINGS()->asset_pack,
index == 0 ? "" : *asset_packs_get(app->asset_packs, index - 1),
Expand Down

0 comments on commit 3d6c554

Please sign in to comment.