blob: cdb97aca6ef16f3b7eaf945f7f9f43c3152f4f6d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
OpenOaksPC:
call SaveScreenTilesToBuffer2
ld hl, AccessedOaksPCText
call PrintText
ld hl, GetDexRatedText
call PrintText
call YesNoChoice
ld a, [wCurrentMenuItem]
and a
jr nz, .closePC
predef DisplayDexRating
.closePC
ld hl, ClosedOaksPCText
call PrintText
jp LoadScreenTilesFromBuffer2
GetDexRatedText:
text_far _GetDexRatedText
text_end
ClosedOaksPCText:
text_far _ClosedOaksPCText
text_linkpromptbutton
text_end
AccessedOaksPCText:
text_far _AccessedOaksPCText
text_end
|