Removed free macro

This commit is contained in:
Eduardo Quezada
2022-09-16 20:36:44 -03:00
parent e412ec30a0
commit 8a68596b64
12 changed files with 30 additions and 31 deletions

View File

@@ -2298,7 +2298,7 @@ static void Fill1PRecords(struct RankingHall1P *dst, s32 hallFacilityId, s32 lvl
record1P[highestId].winStreak = 0;
}
free(playerHallRecords);
Free(playerHallRecords);
}
static void Fill2PRecords(struct RankingHall2P *dst, s32 lvlMode)
@@ -2332,7 +2332,7 @@ static void Fill2PRecords(struct RankingHall2P *dst, s32 lvlMode)
record2P[highestId].winStreak = 0;
}
free(playerHallRecords);
Free(playerHallRecords);
}
static void PrintHallRecords(s32 hallFacilityId, s32 lvlMode)
@@ -2436,7 +2436,7 @@ void SaveGameFrontier(void)
for (i = 0; i < PARTY_SIZE; i++)
gPlayerParty[i] = monsParty[i];
free(monsParty);
Free(monsParty);
}
// Frontier Brain functions.