diff options
Diffstat (limited to 'engine')
| -rw-r--r-- | engine/menus/naming_screen.asm | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/engine/menus/naming_screen.asm b/engine/menus/naming_screen.asm index a0062dcd..c2e63aef 100644 --- a/engine/menus/naming_screen.asm +++ b/engine/menus/naming_screen.asm @@ -326,9 +326,8 @@ DisplayNamingScreen: LoadEDTile: ld de, ED_Tile ld hl, vFont tile $70 - ld bc, (ED_TileEnd - ED_Tile) / $8 - ; to fix the graphical bug on poor emulators - ;lb bc, BANK(ED_Tile), (ED_TileEnd - ED_Tile) / $8 + ; BUG: BANK("Home") should be BANK(ED_Tile), although it coincidentally works as-is + lb bc, BANK("Home"), (ED_TileEnd - ED_Tile) / $8 jp CopyVideoDataDouble ED_Tile: |
