diff options
author | Rangi <remy.oukaour+rangi42@gmail.com> | 2020-11-17 10:56:28 -0500 |
---|---|---|
committer | Rangi <remy.oukaour+rangi42@gmail.com> | 2020-11-17 10:56:28 -0500 |
commit | dd73b278b585266922424e09cd99faeeba02a2f4 (patch) | |
tree | dfe10f0e37b9de9a90453405db90921ecfc03a48 /engine/pokedex | |
parent | 10bda1f6b2b57d44525b0b32e92fe09c8a2d10d9 (diff) |
Resolve some "???" comments
Diffstat (limited to 'engine/pokedex')
-rw-r--r-- | engine/pokedex/pokedex.asm | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/engine/pokedex/pokedex.asm b/engine/pokedex/pokedex.asm index befc2f4c..873a6e3c 100644 --- a/engine/pokedex/pokedex.asm +++ b/engine/pokedex/pokedex.asm @@ -513,7 +513,8 @@ Pokedex_InitOptionScreen: call ClearSprites call Pokedex_DrawOptionScreenBG call Pokedex_InitArrowCursor - ld a, [wCurDexMode] ; Index of the topmost visible item in a scrolling menu ??? + ; point cursor to the current dex mode (modes == menu item indexes) + ld a, [wCurDexMode] ld [wDexArrowCursorPosIndex], a call Pokedex_DisplayModeDescription call WaitBGMap @@ -1171,7 +1172,7 @@ Pokedex_DrawDexEntryScreenBG: .Height: db "HT ?", $5e, "??", $5f, -1 ; HT ?'??" .Weight: - db "WT ???lb", -1 ; WT ???lb + db "WT ???lb", -1 .MenuItems: db $3b, " PAGE AREA CRY PRNT", -1 |