diff options
author | ultima-soul <33333039+ultima-soul@users.noreply.github.com> | 2018-08-26 11:12:22 -0700 |
---|---|---|
committer | Marcus Huderle <huderlem@gmail.com> | 2018-08-26 13:12:22 -0500 |
commit | 3f1288e3e055013e0ab847ba5fea4b566bc31996 (patch) | |
tree | 2d674bed66c39c1a6f8a2a5c0251142785f294a6 /include | |
parent | 56868d92501b11e22b79aabb3ba11f2715e8f733 (diff) |
Add Defines for Pokedex Related Numbers and Fixed Comment in birch_pc.c (#680)
* Changed pokedex_orders.h to use defines from species.h
* Fixed leading white space by converting tabs to 4 spaces.
* Removed comments as they are redundant.
* Added German comments back.
* Added defines for Pokedex Count and Species Count related numbers
* Fix a comment in birch_pc.c
* Added HOENN_DEX_COUNT to birch_pc.
Diffstat (limited to 'include')
-rw-r--r-- | include/pokedex.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/pokedex.h b/include/pokedex.h index f051b4afe..1d3d9b388 100644 --- a/include/pokedex.h +++ b/include/pokedex.h @@ -3,6 +3,9 @@ #include "sprite.h" +#define HOENN_DEX_COUNT 202 +#define NATIONAL_DEX_COUNT 386 + void ResetPokedex(void); void sub_808C0A0(void); void CB2_InitPokedex(void); |