diff options
author | Rangi <remy.oukaour+rangi42@gmail.com> | 2021-03-08 09:41:55 -0500 |
---|---|---|
committer | Rangi <remy.oukaour+rangi42@gmail.com> | 2021-03-08 09:41:55 -0500 |
commit | c1c609ec4a4bab7fef0e744cd631567b57c794fa (patch) | |
tree | 0cb20238976b10490e5b6ef9bbf92067dce454db /engine/link/init_list.asm | |
parent | 9c17fb14c8068d6662b9ca1cb048ed206b6770ee (diff) |
Identify scrolling menu lists in WRAM
Fixes #809
Diffstat (limited to 'engine/link/init_list.asm')
-rw-r--r-- | engine/link/init_list.asm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/engine/link/init_list.asm b/engine/link/init_list.asm index 8f578476b..4d76ebdc8 100644 --- a/engine/link/init_list.asm +++ b/engine/link/init_list.asm @@ -20,7 +20,7 @@ InitList: .check_mon_name cp INIT_MON_LIST jr nz, .check_item_name - ld hl, wCurMart + ld hl, wCurMartCount ld de, PokemonNames ld a, MON_NAME jr .done @@ -34,7 +34,7 @@ InitList: jr .done .check_ob_item_name - ld hl, wCurMart + ld hl, wCurMartCount ld de, ItemNames ld a, ITEM_NAME .done |