summaryrefslogtreecommitdiff
path: root/engine/Intro.asm
diff options
context:
space:
mode:
author2Tie <foxman95@ymail.com>2018-11-29 01:50:18 -0700
committer2Tie <foxman95@ymail.com>2018-11-29 01:50:18 -0700
commit7564f1a7c2a24d4c0c03c7910378adc7cec73749 (patch)
tree86b741b87c60758a83c7713890d1d0fbcf73ba71 /engine/Intro.asm
parente32b8420675450097b25078612235de3d2635ea7 (diff)
Disassembled the rest of the code in bank 4 as far as i can tell. Lines 899, 1538, and 1631 in engine/menu/start_menu.asm have hardcoded jumps that i couldn't figure out how to make work myself.
Diffstat (limited to 'engine/Intro.asm')
-rw-r--r--engine/Intro.asm6
1 files changed, 3 insertions, 3 deletions
diff --git a/engine/Intro.asm b/engine/Intro.asm
index 04497e4..55f8c3f 100644
--- a/engine/Intro.asm
+++ b/engine/Intro.asm
@@ -494,7 +494,7 @@ ChoosePlayerName:: ; 5B25
.loop
ld b, $01
ld de, wPlayerName
- callba Function113f4
+ callba NamingScreen
ld a, [wPlayerName]
cp "@"
jr z, .loop
@@ -547,7 +547,7 @@ ChooseRivalName:: ; 5BA9
.loop
ld b, $02
ld de, wRivalName
- callba Function113f4 ; manual text entry box?
+ callba NamingScreen
ld a, [wRivalName]
cp "@"
jr z, .loop
@@ -599,7 +599,7 @@ MomNamePrompt:: ; 5C31
.loop
ld b, $03
ld de, wMomsName
- callba Function113f4
+ callba NamingScreen
ld a, [wMomsName]
cp "@"
jr z, .loop