summaryrefslogtreecommitdiff
path: root/engine/menus/main_menu.asm
diff options
context:
space:
mode:
authorRangi <remy.oukaour+rangi42@gmail.com>2020-07-04 17:09:35 -0400
committerRangi <remy.oukaour+rangi42@gmail.com>2020-07-04 21:14:46 -0400
commit139a28ff9906d728a6820fe678a2a616eb309421 (patch)
tree9a4339b97e16e10c5b007e836f1f3fadd33bd9f4 /engine/menus/main_menu.asm
parent2718c36065e7eb201a149938bcdd51987c4e56b6 (diff)
Port pokecrystal's formatting of text commands and special characters
Diffstat (limited to 'engine/menus/main_menu.asm')
-rwxr-xr-xengine/menus/main_menu.asm18
1 files changed, 10 insertions, 8 deletions
diff --git a/engine/menus/main_menu.asm b/engine/menus/main_menu.asm
index fe82ec4a..43289ce8 100755
--- a/engine/menus/main_menu.asm
+++ b/engine/menus/main_menu.asm
@@ -136,7 +136,7 @@ LinkMenu:
ld [wLetterPrintingDelayFlags], a
ld hl, wd72e
set 6, [hl]
- ld hl, TextTerminator_6b20
+ ld hl, LinkMenuEmptyText
call PrintText
call SaveScreenTilesToBuffer1
ld hl, WhereWouldYouLikeText
@@ -293,16 +293,16 @@ LinkMenu:
ret
WhereWouldYouLikeText:
- TX_FAR _WhereWouldYouLikeText
- db "@"
+ text_far _WhereWouldYouLikeText
+ text_end
PleaseWaitText:
- TX_FAR _PleaseWaitText
- db "@"
+ text_far _PleaseWaitText
+ text_end
LinkCanceledText:
- TX_FAR _LinkCanceledText
- db "@"
+ text_far _LinkCanceledText
+ text_end
StartNewGame:
ld hl, wd732
@@ -329,7 +329,9 @@ SpecialEnterMap::
jp EnterMap
ContinueText:
- db "CONTINUE", $4e
+ db "CONTINUE"
+ next ""
+ ; fallthrough
NewGameText:
db "NEW GAME"