diff options
author | entrpntr <entrpntr@gmail.com> | 2020-05-25 05:25:43 -0400 |
---|---|---|
committer | entrpntr <entrpntr@gmail.com> | 2020-05-25 17:04:16 -0400 |
commit | 14f6ddbe3c61dc0b395bc295403ceef9d7ef6b2e (patch) | |
tree | e5377a053beeae4ac5d719f2974c3b9f3a67855f /engine/menus | |
parent | f84274fb73db48c998e5c811559388ebab6419ce (diff) |
Finish disassembling banks 7 and 8.
Diffstat (limited to 'engine/menus')
-rw-r--r-- | engine/menus/main_menu.asm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/engine/menus/main_menu.asm b/engine/menus/main_menu.asm index 4e9113a8..5907324d 100644 --- a/engine/menus/main_menu.asm +++ b/engine/menus/main_menu.asm @@ -176,7 +176,7 @@ MainMenu_PrintCurrentTimeAndDay: call GetWeekday ld b, a decoord 1, 14 - call .PlaceCurrentDay + call PrintDayOfWeek decoord 4, 16 ldh a, [hHours] ld c, a @@ -205,7 +205,7 @@ MainMenu_PrintCurrentTimeAndDay: text_far _MainMenuTimeUnknownText text_end -.PlaceCurrentDay: +PrintDayOfWeek: push de ld hl, .Days ld a, b |