diff options
| author | ISSOtm <eldredhabert0@gmail.com> | 2018-05-29 16:43:04 +0200 |
|---|---|---|
| committer | ISSOtm <eldredhabert0@gmail.com> | 2018-05-29 16:43:04 +0200 |
| commit | e6c75f2d8487311914abb327a67e183a188df3d7 (patch) | |
| tree | 1d44142b3879d1736f4c87c1f2e9b6817fd1b2a3 /engine/link | |
| parent | cc4a3e7fe52b043900d7b2f9789cfe3cf1154f77 (diff) | |
Fix disassembling mistakes
Diffstat (limited to 'engine/link')
| -rw-r--r-- | engine/link/place_waiting_text.asm | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/engine/link/place_waiting_text.asm b/engine/link/place_waiting_text.asm index 19d4a6a..96458f0 100644 --- a/engine/link/place_waiting_text.asm +++ b/engine/link/place_waiting_text.asm @@ -7,11 +7,14 @@ PlaceWaitingText:: ; 1:4000 ld a, [wBattleMode] and a jr z, .link_textbox - call Textbox + call DrawTextBox jr .textbox_done .link_textbox - predef Predef_LinkTextbox + ; TODO + ; predef Predef_LinkTextbox + ld a, $1C + call Predef .textbox_done hlcoord 4, 11 ld de, .Waiting @@ -19,5 +22,5 @@ PlaceWaitingText:: ; 1:4000 ld c, 50 jp DelayFrames -.Waiting: - db "Waiting...!@"
\ No newline at end of file +.Waiting + db "つうしんたいきちゅう!@"
\ No newline at end of file |
