diff options
author | Diegoisawesome <Diegoisawesome@users.noreply.github.com> | 2018-09-10 10:20:41 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-09-10 10:20:41 -0500 |
commit | cb053b3a15cf342ab520d234f6dbae27a6199d45 (patch) | |
tree | cb93014d00fbd49975b1607fe2c5698f61a38fa0 /src/wallclock.c | |
parent | 37edb063babb4f8d7b81ea95fb5911a0ab0878c7 (diff) | |
parent | 74cc2cf512657f478667f6b57ab595ab546962a1 (diff) |
Merge pull request #312 from DizzyEggg/decompile_frontier_2
Decompile Battle Factory
Diffstat (limited to 'src/wallclock.c')
-rw-r--r-- | src/wallclock.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/wallclock.c b/src/wallclock.c index f3feab1d4..6bcfa1717 100644 --- a/src/wallclock.c +++ b/src/wallclock.c @@ -668,7 +668,7 @@ void CB2_StartWallClock(void) WallClockInit(); - PrintTextOnWindow(1, 1, gText_Confirm3, 0, 1, 0, NULL); + AddTextPrinterParameterized(1, 1, gText_Confirm3, 0, 1, 0, NULL); PutWindowTilemap(1); schedule_bg_copy_tilemap_to_vram(2); } @@ -716,7 +716,7 @@ void CB2_ViewWallClock(void) WallClockInit(); - PrintTextOnWindow(1, 1, gText_Cancel4, 0, 1, 0, NULL); + AddTextPrinterParameterized(1, 1, gText_Cancel4, 0, 1, 0, NULL); PutWindowTilemap(1); schedule_bg_copy_tilemap_to_vram(2); } @@ -783,7 +783,7 @@ static void Task_SetClock2(u8 taskId) static void Task_SetClock3(u8 taskId) { SetWindowBorderStyle(0, FALSE, 0x250, 0x0d); - PrintTextOnWindow(0, 1, gText_IsThisTheCorrectTime, 0, 1, 0, NULL); + AddTextPrinterParameterized(0, 1, gText_IsThisTheCorrectTime, 0, 1, 0, NULL); PutWindowTilemap(0); schedule_bg_copy_tilemap_to_vram(0); CreateYesNoMenu(&gUnknown_085B21F4, 0x250, 0x0d, 1); |