Struct pointers star standarizing
This commit is contained in:
@@ -195,8 +195,8 @@ static bool8 LoadGraphics(void);
|
||||
static void CB2_InitSummaryScreen(void);
|
||||
static void InitBGs(void);
|
||||
static bool8 DecompressGraphics(void);
|
||||
static void CopyMonToSummaryStruct(struct Pokemon*);
|
||||
static bool8 ExtractMonDataToSummaryStruct(struct Pokemon*);
|
||||
static void CopyMonToSummaryStruct(struct Pokemon *);
|
||||
static bool8 ExtractMonDataToSummaryStruct(struct Pokemon *);
|
||||
static void SetDefaultTilemaps(void);
|
||||
static void CloseSummaryScreen(u8);
|
||||
static void Task_HandleInput(u8);
|
||||
@@ -204,7 +204,7 @@ static void ChangeSummaryPokemon(u8, s8);
|
||||
static void Task_ChangeSummaryMon(u8);
|
||||
static s8 AdvanceMonIndex(s8);
|
||||
static s8 AdvanceMultiBattleMonIndex(s8);
|
||||
static bool8 IsValidToViewInMulti(struct Pokemon*);
|
||||
static bool8 IsValidToViewInMulti(struct Pokemon *);
|
||||
static void ChangePage(u8, s8);
|
||||
static void PssScrollRight(u8);
|
||||
static void PssScrollRightEnd(u8);
|
||||
@@ -234,8 +234,8 @@ static void Task_ShowAppealJamWindow(u8);
|
||||
static void HandleStatusTilemap(u16, s16);
|
||||
static void Task_ShowStatusWindow(u8);
|
||||
static void TilemapFiveMovesDisplay(u16 *, u16, bool8);
|
||||
static void DrawPokerusCuredSymbol(struct Pokemon*);
|
||||
static void DrawExperienceProgressBar(struct Pokemon*);
|
||||
static void DrawPokerusCuredSymbol(struct Pokemon *);
|
||||
static void DrawExperienceProgressBar(struct Pokemon *);
|
||||
static void DrawContestMoveHearts(u16);
|
||||
static void LimitEggSummaryPageDisplay(void);
|
||||
static void ResetWindows(void);
|
||||
@@ -1725,7 +1725,7 @@ static s8 AdvanceMultiBattleMonIndex(s8 delta)
|
||||
}
|
||||
}
|
||||
|
||||
static bool8 IsValidToViewInMulti(struct Pokemon* mon)
|
||||
static bool8 IsValidToViewInMulti(struct Pokemon *mon)
|
||||
{
|
||||
if (GetMonData(mon, MON_DATA_SPECIES) == SPECIES_NONE)
|
||||
return FALSE;
|
||||
|
||||
Reference in New Issue
Block a user