diff options
author | DizzyEggg <jajkodizzy@wp.pl> | 2017-10-27 18:52:21 +0200 |
---|---|---|
committer | DizzyEggg <jajkodizzy@wp.pl> | 2017-10-27 18:52:21 +0200 |
commit | e8903fb4dd3e1f9ef260beb93a939a7e6e9a045b (patch) | |
tree | e8a656d1c48de6d66ba2a5476a59419a2e8bfd61 /src/pokemon_3.c | |
parent | f4e134569f0abf5f6b0bd23043a28e135b0c188c (diff) |
start workin on evo scene
Diffstat (limited to 'src/pokemon_3.c')
-rw-r--r-- | src/pokemon_3.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/pokemon_3.c b/src/pokemon_3.c index 5ff99aee2..25b30ef77 100644 --- a/src/pokemon_3.c +++ b/src/pokemon_3.c @@ -1267,10 +1267,10 @@ const struct CompressedSpritePalette *sub_806E794(struct Pokemon *mon) u16 species = GetMonData(mon, MON_DATA_SPECIES2, 0); u32 otId = GetMonData(mon, MON_DATA_OT_ID, 0); u32 personality = GetMonData(mon, MON_DATA_PERSONALITY, 0); - return sub_806E7CC(species, otId, personality); + return GetMonSpritePalStructFromOtIdPersonality(species, otId, personality); } -const struct CompressedSpritePalette *sub_806E7CC(u16 species, u32 otId , u32 personality) +const struct CompressedSpritePalette *GetMonSpritePalStructFromOtIdPersonality(u16 species, u32 otId , u32 personality) { u32 shinyValue; |