diff options
author | hondew <pokehondew@gmail.com> | 2019-02-22 16:12:37 -0500 |
---|---|---|
committer | huderlem <huderlem@gmail.com> | 2019-02-28 21:21:56 -0600 |
commit | 1dc0d346d949f858e2aae602ebf60eb81bf6b7d7 (patch) | |
tree | 75c9c82683f6d2d4ff95bbbd1ce9ebfbb485d5ac /src | |
parent | dd8ecabe26e5e525306047507d33bc1640040871 (diff) |
fix spelling error
Diffstat (limited to 'src')
-rw-r--r-- | src/roulette.c | 2 | ||||
-rw-r--r-- | src/slot_machine.c | 2 | ||||
-rw-r--r-- | src/tv.c | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/src/roulette.c b/src/roulette.c index 93678fa1c..4c20bd0fe 100644 --- a/src/roulette.c +++ b/src/roulette.c @@ -1964,7 +1964,7 @@ static void sub_8141DE4(u8 taskId) gSpecialVar_0x8004 = TRUE; else gSpecialVar_0x8004 = FALSE; - AlertTVOfNewCointTotal(GetCoins()); + AlertTVOfNewCoinTotal(GetCoins()); BeginHardwarePaletteFade(0xFF, 0, 0, 16, 0); gTasks[taskId].func = sub_8141E7C; } diff --git a/src/slot_machine.c b/src/slot_machine.c index 9c07a96f2..9b345af1e 100644 --- a/src/slot_machine.c +++ b/src/slot_machine.c @@ -1343,7 +1343,7 @@ static bool8 SlotAction_ExitMessage_NoMoreCoins(struct Task *task) static bool8 SlotAction_EndGame(struct Task *task) { SetCoins(sSlotMachine->coins); - AlertTVOfNewCointTotal(GetCoins()); + AlertTVOfNewCoinTotal(GetCoins()); BeginNormalPaletteFade(0xFFFFFFFF, 0, 0, 16, RGB(0, 0, 0)); sSlotMachine->state++; return FALSE; @@ -2019,7 +2019,7 @@ void sub_80EDCE8(void) } } -void AlertTVOfNewCointTotal(u16 nCoinsPaidOut) +void AlertTVOfNewCoinTotal(u16 nCoinsPaidOut) { TVShow *show; bool8 flag; |