diff options
author | Idain <luiscarlosholguinperez@outlook.com> | 2021-04-09 03:28:05 -0400 |
---|---|---|
committer | Idain <luiscarlosholguinperez@outlook.com> | 2021-04-09 03:28:05 -0400 |
commit | 0e14bcffddae61cb1f85c18f90d6487e68f1d515 (patch) | |
tree | 41f4216c3d8fa3fd3ec315ae5c8407369e92c3c3 | |
parent | 66c767c7b499c7ea5210c740d2c775ec04ae6013 (diff) |
Updated Expand tilesets from 192 to 255 tiles (markdown)
-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 ``` |