summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRemy Oukaour <remy.oukaour@gmail.com>2017-12-28 14:10:46 -0500
committerRemy Oukaour <remy.oukaour@gmail.com>2017-12-28 14:10:46 -0500
commitce795692d91c36d1db099a26bf7cdf794db400ba (patch)
tree4ebe94d7a43760099e17a242b7b54aaa333d7e28
parentfe605b2fa756b7ea18d3f92b95523fa0eb7a2a9e (diff)
Correct comment
-rw-r--r--docs/design_flaws.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/design_flaws.md b/docs/design_flaws.md
index b82cfb394..21a222743 100644
--- a/docs/design_flaws.md
+++ b/docs/design_flaws.md
@@ -280,7 +280,7 @@ Modify `Pokedex_LoadAnyFootprint`:
## Pokédex entry banks are derived from their species IDs
-`PokedexDataPointerTable` in [data/pokemon/dex_entry_pointers.asm](/data/pokemon/dex_entry_pointers.asm) is a table of `dw`, not `dba`, yet there are four banks used for Pokédex entries. The correct bank is derived from the species ID at the beginning of each entry. (This is the only use that species ID has.)
+`PokedexDataPointerTable` in [data/pokemon/dex_entry_pointers.asm](/data/pokemon/dex_entry_pointers.asm) is a table of `dw`, not `dba`, yet there are four banks used for Pokédex entries. The correct bank is derived from the species ID at the beginning of each Pokémon's base stats. (This is the only use the base stat species ID has.)
Three separate routines do the same derivation; `GetDexEntryPointer` in [engine/pokedex_2.asm](/engine/pokedex_2.asm):