diff options
author | libjet <libj3t@gmail.com> | 2019-12-11 21:50:49 +0000 |
---|---|---|
committer | libjet <libj3t@gmail.com> | 2019-12-12 20:43:24 +0000 |
commit | 7acf2ec917864acaa267411ffff96f60f50ce703 (patch) | |
tree | 9f26694b1d26ff0514d05f379567effa9021652b /engine/link | |
parent | 93872e920e9c82e1299a7f674cba5b56397b359d (diff) |
Update predef_pointers and wram, and correct typo's caused by search + replace
Diffstat (limited to 'engine/link')
-rwxr-xr-x | engine/link/place_waiting_text.asm | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/engine/link/place_waiting_text.asm b/engine/link/place_waiting_text.asm new file mode 100755 index 00000000..dc1fe215 --- /dev/null +++ b/engine/link/place_waiting_text.asm @@ -0,0 +1,24 @@ +PlaceWaitingText:: + hlcoord 3, 10 + ld b, 1 + ld c, 11 + + ld a, [wBattleMode] + and a + jr z, .notinbattle + + call Textbox + jr .proceed + +.notinbattle + predef LinkTextboxAtHL + +.proceed + hlcoord 4, 11 + ld de, .Waiting + call PlaceString + ld c, 50 + jp DelayFrames + +.Waiting: + db "Waiting...!@" |