diff options
-rw-r--r-- | Expand-tilesets-from-192-to-255-tiles.md | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/Expand-tilesets-from-192-to-255-tiles.md b/Expand-tilesets-from-192-to-255-tiles.md index 1ed58e7..beed7f6 100644 --- a/Expand-tilesets-from-192-to-255-tiles.md +++ b/Expand-tilesets-from-192-to-255-tiles.md @@ -210,23 +210,23 @@ Edit [engine/gfx/load_font.asm](../blob/master/engine/gfx/load_font.asm): - ld de, FontsExtra_SolidBlackGFX - ld hl, vTiles2 tile "■" ; $60 - lb bc, BANK(FontsExtra_SolidBlackGFX), 1 -- call Get1bpp_2 +- call Get1bppViaHDMA - ld de, PokegearPhoneIconGFX - ld hl, vTiles2 tile "☎" ; $62 - lb bc, BANK(PokegearPhoneIconGFX), 1 -- call Get2bpp_2 +- call Get2bppViaHDMA - ld de, FontExtra + 3 tiles ; "<BOLD_D>" - ld hl, vTiles2 tile "<BOLD_D>" - lb bc, BANK(FontExtra), 22 ; "<BOLD_D>" to "ぉ" -- call Get2bpp_2 - jr LoadFrame +- call Get2bppViaHDMA + jr LoadFrame _LoadFontsExtra2:: - ld de, FontsExtra2_UpArrowGFX - ld hl, vTiles2 tile "▲" ; $61 - ld b, BANK(FontsExtra2_UpArrowGFX) - ld c, 1 -- call Get2bpp_2 +- call Get2bppViaHDMA ret ``` |