diff options
author | PikalaxALT <PikalaxALT@users.noreply.github.com> | 2020-01-14 20:03:15 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-01-14 20:03:15 -0500 |
commit | 3911cfa4d7ec1f61a17407987ae7c8cf62b47972 (patch) | |
tree | 2906af9d415a948827d4c29fbbc02475cab0588d /include | |
parent | 8c560386edeecf0b40b4c9f58ceaac50f4f22397 (diff) | |
parent | a5d8b98fde96a5a38dac13472d7964e5e8872cce (diff) |
Merge pull request #219 from GriffinRichards/sync-macros
Sync macros to have Give/Take Add/Remove unity
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 83ad7d611..efe036361 100644 --- a/include/coins.h +++ b/include/coins.h @@ -8,7 +8,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 |