diff options
author | Rangi <remy.oukaour+rangi42@gmail.com> | 2020-11-17 11:09:02 -0500 |
---|---|---|
committer | Rangi <remy.oukaour+rangi42@gmail.com> | 2020-11-17 11:09:02 -0500 |
commit | 9b3c45b14d40d084b6301129d25376ee115b25ad (patch) | |
tree | 70b6dc198e201c9df6dc266c9676ebb55a8153c4 /engine/pokedex | |
parent | cd3fb2ca724475df55f2a2f908761d100bcf2a4b (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 341730829..37c3f0a3c 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 |