mirror of
https://github.com/pret/pokegold.git
synced 2026-08-09 19:57:26 -05:00
28 lines
304 B
NASM
28 lines
304 B
NASM
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...!@"
|
|
|
|
DummyPredef1:
|
|
ret
|