summaryrefslogtreecommitdiff
path: root/include/pokemon.h
diff options
context:
space:
mode:
authorYamaArashi <shadow962@live.com>2016-10-21 22:26:46 -0700
committerYamaArashi <shadow962@live.com>2016-10-21 22:26:46 -0700
commiteea3e61cfd7a1a0dbcba3a5afa8be62c2a731fa4 (patch)
tree369918da005207f5b6f020eecefb86373a1e6c75 /include/pokemon.h
parentaf08472d0ac9457ac4173df0c0110fad8a98c5c3 (diff)
don't specify arguments in GetMonData()/GetBoxMonData() prototypes
Diffstat (limited to 'include/pokemon.h')
-rw-r--r--include/pokemon.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/pokemon.h b/include/pokemon.h
index a49ade10b..e82cd0e54 100644
--- a/include/pokemon.h
+++ b/include/pokemon.h
@@ -375,8 +375,8 @@ void GetMonSpriteTemplate_803C5A0(u16 species, u8 a2);
void EncryptBoxMon(struct BoxPokemon *boxMon);
void DecryptBoxMon(struct BoxPokemon *boxMon);
union PokemonSubstruct *GetSubstruct(struct BoxPokemon *boxMon, u32 personality, u8 substructType);
-u32 GetMonData(struct Pokemon *mon, s32 field, u8 *data);
-u32 GetBoxMonData(struct BoxPokemon *boxMon, s32 field, u8 *data);
+u32 GetMonData();
+u32 GetBoxMonData();
void SetMonData(struct Pokemon *mon, s32 field, const u8 *data);
void SetBoxMonData(struct BoxPokemon *boxMon, s32 field, const u8 *data);
void CopyMon(void *dest, void *src, size_t size);