diff options
author | YamaArashi <shadow962@live.com> | 2016-09-09 23:54:32 -0700 |
---|---|---|
committer | YamaArashi <shadow962@live.com> | 2016-09-09 23:54:32 -0700 |
commit | 69ca60ca91e3cf0d3dc323bf30bb7d79c77464d8 (patch) | |
tree | 9a594c4207653f3ae11e0bf564850e2c81146945 /include/pokemon.h | |
parent | 59c69882dc3a61ae93b85a880d9f8a08cbf13a3f (diff) |
fix mistake in function name
Diffstat (limited to 'include/pokemon.h')
-rw-r--r-- | include/pokemon.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/pokemon.h b/include/pokemon.h index 28176d8fe..2f4d356c3 100644 --- a/include/pokemon.h +++ b/include/pokemon.h @@ -338,7 +338,7 @@ void CreateMon(struct Pokemon *mon, u16 species, u8 level, u8 fixedIV, u8 hasFix void CreateBoxMon(struct BoxPokemon *boxMon, u16 species, u8 level, u8 fixedIV, u8 hasFixedPersonality, u32 fixedPersonality, u8 otIdType, u32 fixedOtId); void CreateMonWithNature(struct Pokemon *mon, u16 species, u8 level, u8 fixedIV, u8 nature); void CreateMonWithGenderNatureLetter(struct Pokemon *mon, u16 species, u8 level, u8 fixedIV, u8 gender, u8 nature, u8 unownLetter); -void CreateFemaleMon(struct Pokemon *mon, u16 species, u8 level); +void CreateMaleMon(struct Pokemon *mon, u16 species, u8 level); void CreateMonWithIVsPersonality(struct Pokemon *mon, u16 species, u8 level, u32 ivs, u32 personality); void CreateMonWithIVsOTID(struct Pokemon *mon, u16 species, u8 level, u8 *ivs, u32 otId); void CreateMonWithEVSpread(struct Pokemon *mon, u16 species, u8 level, u8 fixedIV, u8 evSpread); |