diff options
Diffstat (limited to 'home/load_font.asm')
-rw-r--r-- | home/load_font.asm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/home/load_font.asm b/home/load_font.asm index 3b56d3a8..8ed0f0a7 100644 --- a/home/load_font.asm +++ b/home/load_font.asm @@ -23,7 +23,7 @@ LoadTextBoxTilePatterns:: ld de, vChars2 tile $60 ld bc, TextBoxGraphicsEnd - TextBoxGraphics ld a, BANK(TextBoxGraphics) - jp FarCopyData2 ; if LCD is off, transfer all at once + jp FarCopyData ; if LCD is off, transfer all at once .on ld de, TextBoxGraphics ld hl, vChars2 tile $60 @@ -39,7 +39,7 @@ LoadHpBarAndStatusTilePatterns:: ld de, vChars2 tile $62 ld bc, HpBarAndStatusGraphicsEnd - HpBarAndStatusGraphics ld a, BANK(HpBarAndStatusGraphics) - jp FarCopyData2 ; if LCD is off, transfer all at once + jp FarCopyData ; if LCD is off, transfer all at once .on ld de, HpBarAndStatusGraphics ld hl, vChars2 tile $62 |