summaryrefslogtreecommitdiff
path: root/engine/link/print_waiting_text.asm
blob: c03f0bd687c765e0e18a06fd900569e869d56fb3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
PrintWaitingText::
	hlcoord 3, 10
	ld b, 1
	ld c, 11
	ld a, [wIsInBattle]
	and a
	jr z, .trade
; battle
	call TextBoxBorder
	jr .border_done
.trade
	call CableClub_TextBoxBorder
.border_done
	hlcoord 4, 11
	ld de, WaitingText
	call PlaceString
	ld c, 50
	jp DelayFrames

WaitingText:
	db "¡ESPERA...!@"