diff options
author | GriffinR <griffin.g.richards@gmail.com> | 2020-01-24 12:39:40 -0500 |
---|---|---|
committer | GriffinR <griffin.g.richards@gmail.com> | 2020-01-24 12:39:40 -0500 |
commit | 9ecd065b5026126389e5011c2d99fced21b62794 (patch) | |
tree | 5c131dd3fdc095c0d78b7bb41354563a40bf6f3b /src | |
parent | ce5bc554e5739044af0c10eb6cc9231308fb28ce (diff) |
Review changes
Diffstat (limited to 'src')
-rw-r--r-- | src/trainer_tower.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/trainer_tower.c b/src/trainer_tower.c index 0546f9bae..21120ad20 100644 --- a/src/trainer_tower.c +++ b/src/trainer_tower.c @@ -492,7 +492,7 @@ void InitTrainerTowerBattleStruct(void) void FreeTrainerTowerBattleStruct(void) { - FREE_AND_SET_NULL(sTrainerTowerOpponent) + FREE_AND_SET_NULL(sTrainerTowerOpponent); } void GetTrainerTowerOpponentWinText(u8 *dest, u8 opponentIdx) @@ -551,7 +551,7 @@ static void SetUpTrainerTowerDataStruct(void) // fakematching static void FreeTrainerTowerDataStruct(void) { - FREE_AND_SET_NULL(sTrainerTowerState) + FREE_AND_SET_NULL(sTrainerTowerState); } static void InitTrainerTowerFloor(void) |