diff options
| author | SatoMew <SatoMew@users.noreply.github.com> | 2023-07-17 02:22:06 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-07-16 20:22:06 -0500 |
| commit | a38c7922dda3b6650a1dfe0fe544175ded259b19 (patch) | |
| tree | ebb902990ea387a277aebdda2638128cac810e30 | |
| parent | Use charmap in link_battle_versus_text (#415) (diff) | |
| download | pokeyellow-a38c7922dda3b6650a1dfe0fe544175ded259b19.tar.gz pokeyellow-a38c7922dda3b6650a1dfe0fe544175ded259b19.tar.xz pokeyellow-a38c7922dda3b6650a1dfe0fe544175ded259b19.zip | |
Improve comment about the "ED" tile bug (#421)
| -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: |
