mirror of
https://gitlab.com/xCrystal/pokecrystal-board.git
synced 2024-09-09 09:51:34 -07:00
d3cc861d33
Renamed a bunch of files, most of them one-off functions, to better fit the general snake_case naming scheme. Also renamed some awfully long filenames.
18 lines
363 B
NASM
18 lines
363 B
NASM
LoadOverworldFont:: ; 106594
|
|
ld de, .OverworldFontGFX
|
|
ld hl, vTiles1
|
|
lb bc, BANK(.OverworldFontGFX), $80
|
|
call Get2bpp
|
|
ld de, .OverworldFontSpaceGFX
|
|
ld hl, vTiles2 tile " "
|
|
lb bc, BANK(.OverworldFontSpaceGFX), 1
|
|
call Get2bpp
|
|
ret
|
|
; 1065ad
|
|
|
|
.OverworldFontGFX:
|
|
INCBIN "gfx/font/overworld.2bpp"
|
|
|
|
.OverworldFontSpaceGFX:
|
|
INCBIN "gfx/font/overworld_space.2bpp"
|