Skip to content

Commit

Permalink
Fix format, apply ufbt format
Browse files Browse the repository at this point in the history
  • Loading branch information
EstebanFuentealba committed Sep 28, 2023
1 parent 4522377 commit c4c2469
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 6 deletions.
2 changes: 1 addition & 1 deletion pokemon_char_encode.c
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ char pokemon_char_to_encoded(int byte) {
case '9':
return _9_;

/* This was previously implemented with unicode escape codes, however, that
/* This was previously implemented with unicode escape codes, however, that
* seemed to cause compilation issues. Which is strange because others reported
* compilation issues with the actual unicode characters. I'm not sure a good
* universal way to resolve this.
Expand Down
6 changes: 1 addition & 5 deletions scenes/pokemon_menu.c
Original file line number Diff line number Diff line change
Expand Up @@ -54,11 +54,7 @@ void main_menu_scene_on_enter(void* context) {
pokemon_fap->submenu, buf, SelectNicknameScene, scene_change_from_main_cb, pokemon_fap);
snprintf(buf, sizeof(buf), "Level: %d", pokemon_fap->trade_block->party[0].level);
submenu_add_item(
pokemon_fap->submenu,
buf,
SelectLevelScene,
scene_change_from_main_cb,
pokemon_fap);
pokemon_fap->submenu, buf, SelectLevelScene, scene_change_from_main_cb, pokemon_fap);
submenu_add_item(
pokemon_fap->submenu,
"Select Moves",
Expand Down

0 comments on commit c4c2469

Please sign in to comment.