diff options
author | huderlem <huderlem@gmail.com> | 2020-01-13 19:33:47 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-01-13 19:33:47 -0600 |
commit | 6d6c57f3832c14aadd07b9d39c658c838fcd42cf (patch) | |
tree | eb87fc3634991f5ce401b25dfca9968ee5c36f69 /include | |
parent | fa5816915d2a089549bfae3851c36336eae35d43 (diff) | |
parent | 96720db08319d8f69d7864e186722d13dc9ceb05 (diff) |
Merge pull request #953 from GriffinRichards/sync-script
Port some macro/script fixes from pokefirered
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 |