diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/move_data.h | 2 | ||||
-rw-r--r-- | include/pokemon.h | 5 |
2 files changed, 4 insertions, 3 deletions
diff --git a/include/move_data.h b/include/move_data.h index d4e3c128..975bcf8d 100644 --- a/include/move_data.h +++ b/include/move_data.h @@ -1,6 +1,6 @@ #ifndef POKEDIAMOND_MOVE_DATA_H #define POKEDIAMOND_MOVE_DATA_H -u32 FUN_0206AB30(u16 move, u8 ppUp); +int FUN_0206AB30(u16 move, u8 ppUp); #endif //POKEDIAMOND_MOVE_DATA_H diff --git a/include/pokemon.h b/include/pokemon.h index 451c7d1b..d2166c22 100644 --- a/include/pokemon.h +++ b/include/pokemon.h @@ -504,7 +504,8 @@ void SetMonDataInternal(struct Pokemon * pokemon, int attr, void * ptr); void SetMonData(struct Pokemon * pokemon, int attr, void * ptr); void SetBoxMonDataInternal(struct BoxPokemon * pokemon, int attr, void * ptr); void SetBoxMonData(struct BoxPokemon * pokemon, int attr, void * ptr); -void AddMonData(struct Pokemon * pokemon, int attr, u32 amount); -void AddBoxMonData(struct Pokemon * pokemon, int attr, u32 amount); +void AddMonData(struct Pokemon * pokemon, int attr, int amount); +void AddMonDataInternal(struct Pokemon * pokemon, int attr, int amount); +void AddBoxMonData(struct BoxPokemon * pokemon, int attr, int amount); #endif //POKEDIAMOND_POKEMON_H |