From b5a9e83a94f54c43fedca004fbd7223d6f144fc0 Mon Sep 17 00:00:00 2001 From: Rangi Date: Sun, 29 Jul 2018 16:00:11 -0400 Subject: 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. --- engine/pokedex/pokedex.asm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'engine/pokedex') 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 -- cgit v1.2.3