diff options
-rw-r--r-- | Expand-tilesets-from-192-to-255-tiles.md | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/Expand-tilesets-from-192-to-255-tiles.md b/Expand-tilesets-from-192-to-255-tiles.md index beed7f6..ccb942d 100644 --- a/Expand-tilesets-from-192-to-255-tiles.md +++ b/Expand-tilesets-from-192-to-255-tiles.md @@ -219,7 +219,7 @@ Edit [engine/gfx/load_font.asm](../blob/master/engine/gfx/load_font.asm): - ld hl, vTiles2 tile "<BOLD_D>" - lb bc, BANK(FontExtra), 22 ; "<BOLD_D>" to "ぉ" - call Get2bppViaHDMA - jr LoadFrame + jr LoadFrame _LoadFontsExtra2:: - ld de, FontsExtra2_UpArrowGFX @@ -250,7 +250,7 @@ And edit [mobile/mobile_41.asm](../blob/master/mobile/mobile_41.asm): call Get2bpp ld de, $40b0 ld hl, vTiles2 tile $6b - ld b, $0f ; no graphics at 0f:40b0; JP leftover??? + ld b, $0f ; no graphics at 0f:40b0; JP leftover??? call Get2bpp farcall LoadFrame ret @@ -321,7 +321,7 @@ Edit [engine/events/magikarp.asm](../blob/master/engine/events/magikarp.asm): And edit [engine/events/map_name_sign.asm](../blob/master/engine/events/map_name_sign.asm): ```diff -InitMapNameSign:: + InitMapNameSign:: ... ; Display for 60 frames @@ -361,6 +361,8 @@ Edit [home/map.asm](../blob/master/home/map.asm). + ld bc, $7f tiles call CopyBytes + ... + ldh a, [rVBK] push af ld a, BANK(vTiles5) |