summaryrefslogtreecommitdiff
path: root/home/text.asm
diff options
context:
space:
mode:
authorchaos-lord <dd4791.mariokarter@hotmail.co.uk>2017-07-21 14:55:21 +0100
committerchaos-lord <dd4791.mariokarter@hotmail.co.uk>2017-07-21 14:55:21 +0100
commit3f2765e7cbf86f3c616a21ef4fa21bbf1ebfebc6 (patch)
tree2a05e2b397f2eb44b217c9e31130e15815bb3ba9 /home/text.asm
parenta0ee496a54dbdaa65fbd5e0d57748e233df14956 (diff)
labeled jackpot stuff
Diffstat (limited to 'home/text.asm')
-rw-r--r--home/text.asm12
1 files changed, 6 insertions, 6 deletions
diff --git a/home/text.asm b/home/text.asm
index 052b9a2..19c8531 100644
--- a/home/text.asm
+++ b/home/text.asm
@@ -493,9 +493,9 @@ HandleScrollingText: ; 0x3325 activates while text is scrolling
ld [hl], $0 ;+0
ret
-Func_3357: ; 0x3357
+LoadStationaryTextAndHeader: ; 0x3357 LoadStationaryTextAndHeader
ld a, $1
- ld [hli], a
+ ld [hli], a ;Enable and load StationaryText de. then load the text after it in until a $00 is loaded in
ld a, [de]
ld [hli], a
inc de
@@ -512,12 +512,12 @@ Func_3357: ; 0x3357
pop af
ld l, a
ld h, wBottomMessageText / $100
-.asm_336b
+.Loop
ld a, [de]
ld [hli], a
inc de
and a
- jr nz, .asm_336b
+ jr nz, .Loop
ret
LoadScoreTextFromStack: ; 0x3372 load stationary text header DE into HL, then load 4 byte BCD score from the stack into the buffer, ending in an 0 and space
@@ -700,7 +700,7 @@ UpdateBottomText: ; 0x33e3
call LoadOrCopyVRAMData
ret
-Func_3475: ; 0x3475
+MainLoopUntilTextIsClear: ; 0x3475
xor a
ld [hJoypadState], a
ld [hNewlyPressedButtons], a
@@ -715,7 +715,7 @@ Func_3475: ; 0x3475
rst AdvanceFrame
ld a, [wBottomTextEnabled]
and a
- jr nz, Func_3475 ;loops until wBottomTextEnabled is zero
+ jr nz, MainLoopUntilTextIsClear ;loops until wBottomTextEnabled is zero
ret
FivePoints: ; 34a6