Skip to content

Commit c4c2469

Browse files
Fix format, apply ufbt format
1 parent 4522377 commit c4c2469

File tree

2 files changed

+2
-6
lines changed

2 files changed

+2
-6
lines changed

pokemon_char_encode.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ char pokemon_char_to_encoded(int byte) {
131131
case '9':
132132
return _9_;
133133

134-
/* This was previously implemented with unicode escape codes, however, that
134+
/* This was previously implemented with unicode escape codes, however, that
135135
* seemed to cause compilation issues. Which is strange because others reported
136136
* compilation issues with the actual unicode characters. I'm not sure a good
137137
* universal way to resolve this.

scenes/pokemon_menu.c

+1-5
Original file line numberDiff line numberDiff line change
@@ -54,11 +54,7 @@ void main_menu_scene_on_enter(void* context) {
5454
pokemon_fap->submenu, buf, SelectNicknameScene, scene_change_from_main_cb, pokemon_fap);
5555
snprintf(buf, sizeof(buf), "Level: %d", pokemon_fap->trade_block->party[0].level);
5656
submenu_add_item(
57-
pokemon_fap->submenu,
58-
buf,
59-
SelectLevelScene,
60-
scene_change_from_main_cb,
61-
pokemon_fap);
57+
pokemon_fap->submenu, buf, SelectLevelScene, scene_change_from_main_cb, pokemon_fap);
6258
submenu_add_item(
6359
pokemon_fap->submenu,
6460
"Select Moves",

0 commit comments

Comments
 (0)