diff options
author | GriffinR <griffin.g.richards@gmail.com> | 2020-01-13 20:41:57 -0500 |
---|---|---|
committer | GriffinR <griffin.g.richards@gmail.com> | 2020-01-13 20:41:57 -0500 |
commit | e92cc7752b5934d7501c5027057a6b7c52601bd7 (patch) | |
tree | 85150713e1d8561415a54a45221c5b1975c91428 /include | |
parent | 655910a16fcb7b62cf43b83bb00b21a9c3e55e82 (diff) | |
parent | 736f3bbbe0d1685474364a68038554f024bff62e (diff) |
Merge branch 'master' of https://github.com/pret/pokeemerald into fix-eventobj
Diffstat (limited to 'include')
-rw-r--r-- | include/coins.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/coins.h b/include/coins.h index 996519605..6190ebbab 100644 --- a/include/coins.h +++ b/include/coins.h @@ -6,7 +6,7 @@ void ShowCoinsWindow(u32 coinAmount, u8 x, u8 y); void HideCoinsWindow(void); u16 GetCoins(void); void SetCoins(u16 coinAmount); -bool8 GiveCoins(u16 toAdd); -bool8 TakeCoins(u16 toSub); +bool8 AddCoins(u16 toAdd); +bool8 RemoveCoins(u16 toSub); #endif // GUARD_COINS_H |