From a38c7922dda3b6650a1dfe0fe544175ded259b19 Mon Sep 17 00:00:00 2001 From: SatoMew Date: Mon, 17 Jul 2023 02:22:06 +0100 Subject: Improve comment about the "ED" tile bug (#421) --- engine/menus/naming_screen.asm | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'engine') 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: -- cgit v1.3.1-sl0p