diff options
| author | dannye <33dannye@gmail.com> | 2022-09-11 23:34:59 -0500 |
|---|---|---|
| committer | dannye <33dannye@gmail.com> | 2022-09-12 00:53:37 -0500 |
| commit | ecab35295aefb44227ba38f257dc40c8c10474e3 (patch) | |
| tree | d04160bc19180ee50a941d121f90cc7071e7a672 /engine/events/diploma2.asm | |
| parent | Replace Hard-Coded Number With Constant (diff) | |
| parent | Add `UNUSED_TYPE`/`UNUSED_TYPE_END` constants (diff) | |
| download | pokeyellow-ecab35295aefb44227ba38f257dc40c8c10474e3.tar.gz pokeyellow-ecab35295aefb44227ba38f257dc40c8c10474e3.tar.xz pokeyellow-ecab35295aefb44227ba38f257dc40c8c10474e3.zip | |
Merge branch 'master' of https://github.com/pret/pokered
Diffstat (limited to 'engine/events/diploma2.asm')
| -rw-r--r-- | engine/events/diploma2.asm | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/engine/events/diploma2.asm b/engine/events/diploma2.asm index efc3b9cd..87a44439 100644 --- a/engine/events/diploma2.asm +++ b/engine/events/diploma2.asm @@ -23,11 +23,11 @@ _DisplayDiploma: hlcoord 19, 0 ld [hl], a - ld de, String_e9a73 + ld de, DiplomaText hlcoord 5, 2 call PlaceString - ld de, String_e9a7d + ld de, DiplomaPlayer hlcoord 3, 4 call PlaceString @@ -35,11 +35,11 @@ _DisplayDiploma: hlcoord 10, 4 call PlaceString - ld de, String_e9a84 + ld de, DiplomaCongrats hlcoord 2, 6 call PlaceString - ld de, String_e9ac8 + ld de, DiplomaGameFreak hlcoord 9, 16 call PlaceString @@ -51,20 +51,20 @@ _DisplayDiploma: call GBPalNormal ret -String_e9a73: +DiplomaText: db CIRCLE_TILE_ID, "Diploma", CIRCLE_TILE_ID, "@" -String_e9a7d: +DiplomaPlayer: db "Player@" -String_e9a84: +DiplomaCongrats: db "Congrats! This" next "diploma certifies" next "that you have" next "completed your" next "#DEX.@" -String_e9ac8: +DiplomaGameFreak: db "GAME FREAK@" Func_e9ad3: |
