rename pokemon_summary_app -> pokemon_summary_screen

This commit is contained in:
RavePossum
2024-11-03 09:24:45 -05:00
parent 0d9570a7c9
commit d5afd591ce
42 changed files with 46 additions and 46 deletions

View File

@@ -28,7 +28,7 @@
#include "message.h"
#include "overlay_manager.h"
#include "pokemon.h"
#include "pokemon_summary_app.h"
#include "pokemon_summary_screen.h"
#include "sprite_resource.h"
#include "strbuf.h"
#include "string_list.h"

View File

@@ -1,5 +1,5 @@
#ifndef POKEPLATINUM_UNK_0208C324_H
#define POKEPLATINUM_UNK_0208C324_H
#ifndef POKEPLATINUM_POKEMON_SUMMARY_SCREEN_H
#define POKEPLATINUM_POKEMON_SUMMARY_SCREEN_H
#include "constants/moves.h"
@@ -21,7 +21,7 @@
#include "message.h"
#include "narc.h"
#include "pokemon.h"
#include "pokemon_summary_app.h"
#include "pokemon_summary_screen.h"
#include "savedata.h"
#include "strbuf.h"
#include "string_template.h"
@@ -241,4 +241,4 @@ u32 PokemonSummary_StatusIconCell(void);
u32 PokemonSummary_StatusIconAnim(void);
u32 PokemonSummary_StatusIconAnimIdx(Pokemon *mon);
#endif // POKEPLATINUM_UNK_0208C324_H
#endif // POKEPLATINUM_POKEMON_SUMMARY_SCREEN_H

View File

@@ -18,7 +18,7 @@
#include "overlay_manager.h"
#include "palette.h"
#include "pokemon.h"
#include "pokemon_summary_app.h"
#include "pokemon_summary_screen.h"
#include "poketch_data.h"
#include "strbuf.h"
#include "string_template.h"

View File

@@ -24,7 +24,7 @@
#include "menu.h"
#include "message.h"
#include "overlay_manager.h"
#include "pokemon_summary_app.h"
#include "pokemon_summary_screen.h"
#include "savedata.h"
#include "sprite_resource.h"
#include "strbuf.h"

View File

@@ -5,7 +5,7 @@
#include "field/field_system_decl.h"
#include "pokemon_summary_app.h"
#include "pokemon_summary_screen.h"
#include "savedata.h"
typedef struct {

View File

@@ -22,7 +22,7 @@
#include "field_task.h"
#include "pokemon.h"
#include "pokemon_summary_app.h"
#include "pokemon_summary_screen.h"
#include "savedata.h"
void sub_0203D1D4(FieldSystem *fieldSystem, BattleParams *param1);

View File

@@ -2,7 +2,7 @@
#define POKEPLATINUM_UNK_0208EA44_H
#include "bg_window.h"
#include "pokemon_summary_app.h"
#include "pokemon_summary_screen.h"
void sub_0208EA44(PokemonSummaryScreen *param0);
void sub_0208EAF4(PokemonSummaryScreen *param0);

View File

@@ -1,7 +1,7 @@
#ifndef POKEPLATINUM_UNK_0208FCF8_H
#define POKEPLATINUM_UNK_0208FCF8_H
#include "pokemon_summary_app.h"
#include "pokemon_summary_screen.h"
void sub_0208FCF8(PokemonSummaryScreen *param0);
void sub_0208FD40(PokemonSummaryScreen *param0);

View File

@@ -1,7 +1,7 @@
#ifndef POKEPLATINUM_UNK_020916B4_H
#define POKEPLATINUM_UNK_020916B4_H
#include "pokemon_summary_app.h"
#include "pokemon_summary_screen.h"
void sub_020916B4(PokemonSummaryScreen *param0);
void sub_02091750(PokemonSummaryScreen *param0);

View File

@@ -1,7 +1,7 @@
#ifndef POKEPLATINUM_UNK_020920C0_H
#define POKEPLATINUM_UNK_020920C0_H
#include "pokemon_summary_app.h"
#include "pokemon_summary_screen.h"
void sub_020920C0(PokemonSummaryScreen *param0);
void sub_0209219C(PokemonSummaryScreen *param0);

View File

@@ -319,7 +319,7 @@ Static main
Object main.nef.p/src_unk_0208BEBC.c.o
Object main.nef.p/src_unk_0208C010.c.o
Object main.nef.p/src_unk_0208C098.c.o
Object main.nef.p/src_pokemon_summary_app.c.o
Object main.nef.p/src_pokemon_summary_screen.c.o
Object main.nef.p/src_unk_0208EA44.c.o
Object main.nef.p/src_unk_0208FCF8.c.o
Object main.nef.p/src_unk_020916B4.c.o

View File

@@ -51,7 +51,7 @@
#include "party.h"
#include "player_avatar.h"
#include "pokemon.h"
#include "pokemon_summary_app.h"
#include "pokemon_summary_screen.h"
#include "poketch_data.h"
#include "render_window.h"
#include "save_player.h"

View File

@@ -303,7 +303,7 @@ pokeplatinum_c = files(
'unk_0208BEBC.c',
'unk_0208C010.c',
'unk_0208C098.c',
'pokemon_summary_app.c',
'pokemon_summary_screen.c',
'unk_0208EA44.c',
'unk_0208FCF8.c',
'unk_020916B4.c',

View File

@@ -43,7 +43,7 @@
#include "party.h"
#include "pokemon.h"
#include "pokemon_icon.h"
#include "pokemon_summary_app.h"
#include "pokemon_summary_screen.h"
#include "render_window.h"
#include "strbuf.h"
#include "string_template.h"

View File

@@ -29,7 +29,7 @@
#include "palette.h"
#include "party.h"
#include "pokemon.h"
#include "pokemon_summary_app.h"
#include "pokemon_summary_screen.h"
#include "render_window.h"
#include "strbuf.h"
#include "string_template.h"

View File

@@ -17,7 +17,7 @@
#include "move_table.h"
#include "party.h"
#include "pokemon.h"
#include "pokemon_summary_app.h"
#include "pokemon_summary_screen.h"
#include "render_text.h"
#include "render_window.h"
#include "strbuf.h"

View File

@@ -22,7 +22,7 @@
#include "narc.h"
#include "party.h"
#include "pokemon_icon.h"
#include "pokemon_summary_app.h"
#include "pokemon_summary_screen.h"
#include "unk_0200C6E4.h"
#include "unk_0207C908.h"
#include "unk_0207E0B8.h"

View File

@@ -44,7 +44,7 @@
#include "overlay_manager.h"
#include "party.h"
#include "pokemon.h"
#include "pokemon_summary_app.h"
#include "pokemon_summary_screen.h"
#include "save_player.h"
#include "savedata.h"
#include "strbuf.h"

View File

@@ -45,7 +45,7 @@
#include "party.h"
#include "pokemon.h"
#include "pokemon_icon.h"
#include "pokemon_summary_app.h"
#include "pokemon_summary_screen.h"
#include "render_window.h"
#include "rtc.h"
#include "savedata.h"

View File

@@ -29,7 +29,7 @@
#include "narc.h"
#include "overlay_manager.h"
#include "pokemon.h"
#include "pokemon_summary_app.h"
#include "pokemon_summary_screen.h"
#include "render_text.h"
#include "render_window.h"
#include "strbuf.h"

View File

@@ -9,7 +9,7 @@
#include "overlay094/struct_ov94_0223FD4C.h"
#include "overlay_manager.h"
#include "pokemon_summary_app.h"
#include "pokemon_summary_screen.h"
#include "unk_0202D778.h"
#include "constdata/const_020F410C.h"

View File

@@ -12,7 +12,7 @@
#include "bag.h"
#include "heap.h"
#include "party.h"
#include "pokemon_summary_app.h"
#include "pokemon_summary_screen.h"
#include "save_player.h"
#include "savedata.h"
#include "unk_02028124.h"

View File

@@ -42,7 +42,7 @@
#include "palette.h"
#include "party.h"
#include "pokemon.h"
#include "pokemon_summary_app.h"
#include "pokemon_summary_screen.h"
#include "render_window.h"
#include "save_player.h"
#include "savedata.h"

View File

@@ -34,7 +34,7 @@
#include "palette.h"
#include "party.h"
#include "pokemon.h"
#include "pokemon_summary_app.h"
#include "pokemon_summary_screen.h"
#include "render_window.h"
#include "save_player.h"
#include "savedata.h"

View File

@@ -1,4 +1,4 @@
#include "pokemon_summary_app.h"
#include "pokemon_summary_screen.h"
#include <nitro.h>
#include <string.h>
@@ -28,7 +28,7 @@
#include "overlay_manager.h"
#include "party.h"
#include "pokemon.h"
#include "pokemon_summary_app.h"
#include "pokemon_summary_screen.h"
#include "render_window.h"
#include "ribbon.h"
#include "savedata.h"

View File

@@ -116,7 +116,7 @@
#include "player_avatar.h"
#include "poffin.h"
#include "pokemon.h"
#include "pokemon_summary_app.h"
#include "pokemon_summary_screen.h"
#include "pokeradar.h"
#include "poketch_data.h"
#include "render_window.h"

View File

@@ -97,7 +97,7 @@
#include "party.h"
#include "player_avatar.h"
#include "pokemon.h"
#include "pokemon_summary_app.h"
#include "pokemon_summary_screen.h"
#include "poketch_data.h"
#include "record_mixed_rng.h"
#include "rtc.h"

View File

@@ -27,7 +27,7 @@
#include "inlines.h"
#include "party.h"
#include "pokemon.h"
#include "pokemon_summary_app.h"
#include "pokemon_summary_screen.h"
#include "save_player.h"
#include "savedata.h"
#include "script_manager.h"

View File

@@ -20,7 +20,7 @@
#include "heap.h"
#include "inlines.h"
#include "party.h"
#include "pokemon_summary_app.h"
#include "pokemon_summary_screen.h"
#include "save_player.h"
#include "savedata.h"
#include "script_manager.h"

View File

@@ -20,7 +20,7 @@
#include "heap.h"
#include "inlines.h"
#include "party.h"
#include "pokemon_summary_app.h"
#include "pokemon_summary_screen.h"
#include "save_player.h"
#include "savedata.h"
#include "script_manager.h"

View File

@@ -34,7 +34,7 @@
#include "message.h"
#include "party.h"
#include "pokemon.h"
#include "pokemon_summary_app.h"
#include "pokemon_summary_screen.h"
#include "poketch_data.h"
#include "rtc.h"
#include "save_player.h"

View File

@@ -27,7 +27,7 @@
#include "party.h"
#include "player_avatar.h"
#include "pokemon.h"
#include "pokemon_summary_app.h"
#include "pokemon_summary_screen.h"
#include "render_window.h"
#include "save_player.h"
#include "savedata.h"

View File

@@ -20,7 +20,7 @@
#include "field_task.h"
#include "heap.h"
#include "party.h"
#include "pokemon_summary_app.h"
#include "pokemon_summary_screen.h"
#include "record_mixed_rng.h"
#include "save_player.h"
#include "savedata.h"

View File

@@ -34,7 +34,7 @@
#include "palette.h"
#include "party.h"
#include "pokemon.h"
#include "pokemon_summary_app.h"
#include "pokemon_summary_screen.h"
#include "poketch_data.h"
#include "render_text.h"
#include "render_window.h"

View File

@@ -32,7 +32,7 @@
#include "overlay_manager.h"
#include "party.h"
#include "pokemon.h"
#include "pokemon_summary_app.h"
#include "pokemon_summary_screen.h"
#include "render_window.h"
#include "strbuf.h"
#include "string_list.h"

View File

@@ -19,7 +19,7 @@
#include "move_table.h"
#include "party.h"
#include "pokemon.h"
#include "pokemon_summary_app.h"
#include "pokemon_summary_screen.h"
#include "render_window.h"
#include "strbuf.h"
#include "string_list.h"

View File

@@ -16,7 +16,7 @@
#include "move_table.h"
#include "pokemon.h"
#include "pokemon_icon.h"
#include "pokemon_summary_app.h"
#include "pokemon_summary_screen.h"
#include "ribbon.h"
#include "unk_0200C6E4.h"
#include "unk_0201DBEC.h"

View File

@@ -11,7 +11,7 @@
#include "message.h"
#include "move_table.h"
#include "pokemon.h"
#include "pokemon_summary_app.h"
#include "pokemon_summary_screen.h"
#include "render_window.h"
#include "ribbon.h"
#include "strbuf.h"

View File

@@ -13,7 +13,7 @@
#include "camera.h"
#include "gx_layers.h"
#include "pokemon.h"
#include "pokemon_summary_app.h"
#include "pokemon_summary_screen.h"
#include "unk_0200762C.h"
#include "unk_02015F84.h"
#include "unk_0202419C.h"

View File

@@ -5,7 +5,7 @@
#include "bg_window.h"
#include "core_sys.h"
#include "pokemon_summary_app.h"
#include "pokemon_summary_screen.h"
#include "touch_screen.h"
#include "unk_02005474.h"
#include "unk_0208EA44.h"

View File

@@ -20,7 +20,7 @@
#include "party.h"
#include "poffin.h"
#include "pokemon.h"
#include "pokemon_summary_app.h"
#include "pokemon_summary_screen.h"
#include "save_player.h"
#include "savedata.h"
#include "string_template.h"

View File

@@ -17,7 +17,7 @@
#include "game_records.h"
#include "heap.h"
#include "journal.h"
#include "pokemon_summary_app.h"
#include "pokemon_summary_screen.h"
#include "save_player.h"
#include "unk_020366A0.h"
#include "unk_0203D1B8.h"