summaryrefslogtreecommitdiff
path: root/engine
diff options
context:
space:
mode:
authorRangi <remy.oukaour+rangi42@gmail.com>2018-07-29 16:00:11 -0400
committerRangi <remy.oukaour+rangi42@gmail.com>2018-07-29 16:00:11 -0400
commitb5a9e83a94f54c43fedca004fbd7223d6f144fc0 (patch)
treeda9ffb3daec46b2121abf08468f2bba9844b6627 /engine
parentc9cb67141bd13db51b8f6cb79f158cbca21660d0 (diff)
Fix reviewed issues.
Pokedex_PrintListing has a comment noting how it depends on wCurSpecies == wNamedObjectIndexBuffer; an assert would be more convenient, but is not possible since WRAM label addresses are not defined yet here.
Diffstat (limited to 'engine')
-rw-r--r--engine/items/tmhm.asm2
-rw-r--r--engine/pokedex/pokedex.asm2
2 files changed, 2 insertions, 2 deletions
diff --git a/engine/items/tmhm.asm b/engine/items/tmhm.asm
index d249d4688..38ffa865e 100644
--- a/engine/items/tmhm.asm
+++ b/engine/items/tmhm.asm
@@ -381,7 +381,7 @@ TMHM_DisplayPocketItems:
ld [wTempTMHM], a
.okay
predef GetTMHMMove
- ld a, [wTempTMHM]
+ ld a, [wNamedObjectIndexBuffer]
ld [wPutativeTMHMMove], a
call GetMoveName
pop hl
diff --git a/engine/pokedex/pokedex.asm b/engine/pokedex/pokedex.asm
index d62997c9b..10508833f 100644
--- a/engine/pokedex/pokedex.asm
+++ b/engine/pokedex/pokedex.asm
@@ -1492,7 +1492,7 @@ Pokedex_PrintListing:
.loop
push af
ld a, [de]
- ld [wTempSpecies], a
+ ld [wTempSpecies], a ; also sets wNamedObjectIndexBuffer
push de
push hl
call .PrintEntry