diff options
Diffstat (limited to 'engine/overworld/print_safari_steps.asm')
-rw-r--r-- | engine/overworld/print_safari_steps.asm | 36 |
1 files changed, 0 insertions, 36 deletions
diff --git a/engine/overworld/print_safari_steps.asm b/engine/overworld/print_safari_steps.asm deleted file mode 100644 index 01dd34e0..00000000 --- a/engine/overworld/print_safari_steps.asm +++ /dev/null @@ -1,36 +0,0 @@ -PrintSafariZoneSteps: - ld a, [wCurMap] - cp SAFARI_ZONE_EAST - ret c - cp UNKNOWN_DUNGEON_2 - ret nc - coord hl, 0, 0 - lb bc, 3, 7 - call TextBoxBorder - coord hl, 1, 1 - ld de, wSafariSteps - lb bc, 2, 3 - call PrintNumber - coord hl, 4, 1 - ld de, SafariSteps - call PlaceString - coord hl, 1, 3 - ld de, SafariBallText - call PlaceString - ld a, [wNumSafariBalls] - cp 10 - jr nc, .numSafariBallsTwoDigits - coord hl, 5, 3 - ld a, " " - ld [hl], a -.numSafariBallsTwoDigits - coord hl, 6, 3 - ld de, wNumSafariBalls - lb bc, 1, 2 - jp PrintNumber - -SafariSteps: - db "/500@" - -SafariBallText: - db "BALL×× @" |