diff options
author | Rangi <35663410+Rangi42@users.noreply.github.com> | 2019-04-13 11:50:16 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-04-13 11:50:16 -0400 |
commit | 1ada06f576ebd25bfd00cfdc9d197d93946ebd5b (patch) | |
tree | 5e6e4603ccc68538fbf242cb463becda5b71ea75 /engine/rtc | |
parent | 31dc62ec5d1a8028cb1cb30ea0d3fa8eb553145a (diff) | |
parent | 3e78e5b2b604568b13a37e4603dbd798373b9805 (diff) |
Merge pull request #622 from mid-kid/master
TextBox -> Textbox
Diffstat (limited to 'engine/rtc')
-rw-r--r-- | engine/rtc/restart_clock.asm | 2 | ||||
-rw-r--r-- | engine/rtc/timeset.asm | 8 |
2 files changed, 5 insertions, 5 deletions
diff --git a/engine/rtc/restart_clock.asm b/engine/rtc/restart_clock.asm index f3d8ebdae..16f25cddd 100644 --- a/engine/rtc/restart_clock.asm +++ b/engine/rtc/restart_clock.asm @@ -189,7 +189,7 @@ RestartClock: hlcoord 0, 5 ld b, 5 ld c, 18 - call TextBox + call Textbox decoord 1, 8 ld a, [wBuffer4] ld b, a diff --git a/engine/rtc/timeset.asm b/engine/rtc/timeset.asm index f5610200f..146adc072 100644 --- a/engine/rtc/timeset.asm +++ b/engine/rtc/timeset.asm @@ -56,7 +56,7 @@ InitClock: hlcoord 3, 7 ld b, 2 ld c, 15 - call TextBox + call Textbox hlcoord 11, 7 ld [hl], $1 hlcoord 11, 10 @@ -86,7 +86,7 @@ InitClock: call PrintText hlcoord 11, 7 lb bc, 2, 7 - call TextBox + call Textbox hlcoord 15, 7 ld [hl], $1 hlcoord 15, 10 @@ -408,14 +408,14 @@ SetDayOfWeek: .loop hlcoord 0, 12 lb bc, 4, 18 - call TextBox + call Textbox call LoadStandardMenuHeader ld hl, .WhatDayIsItText call PrintText hlcoord 9, 3 ld b, 2 ld c, 9 - call TextBox + call Textbox hlcoord 14, 3 ld [hl], TIMESET_UP_ARROW hlcoord 14, 6 |