Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
pret
GitHub Repository: pret/pokered
Path: blob/master/engine/menus/oaks_pc.asm
1271 views
1
OpenOaksPC:
2
call SaveScreenTilesToBuffer2
3
ld hl, AccessedOaksPCText
4
call PrintText
5
ld hl, GetDexRatedText
6
call PrintText
7
call YesNoChoice
8
ld a, [wCurrentMenuItem]
9
and a
10
jr nz, .closePC
11
predef DisplayDexRating
12
.closePC
13
ld hl, ClosedOaksPCText
14
call PrintText
15
jp LoadScreenTilesFromBuffer2
16
17
GetDexRatedText:
18
text_far _GetDexRatedText
19
text_end
20
21
ClosedOaksPCText:
22
text_far _ClosedOaksPCText
23
text_waitbutton
24
text_end
25
26
AccessedOaksPCText:
27
text_far _AccessedOaksPCText
28
text_end
29
30