diff options
author | GriffinR <griffin.g.richards@gmail.com> | 2020-03-03 16:18:45 -0500 |
---|---|---|
committer | GriffinR <griffin.g.richards@gmail.com> | 2020-03-03 17:45:25 -0500 |
commit | 7af1b35d17b7077b13e04c2717b48a55960fa8ce (patch) | |
tree | 75e74cfc0e365ec2aab4395f8ede0d8b8824db47 /src/prof_pc.c | |
parent | 1aa1f189721ba9c21597bae047282c4a785ab400 (diff) |
Sync some specials/drop unnecessary prefixes
Diffstat (limited to 'src/prof_pc.c')
-rw-r--r-- | src/prof_pc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/prof_pc.c b/src/prof_pc.c index ce81d9ce8..c7eed8878 100644 --- a/src/prof_pc.c +++ b/src/prof_pc.c @@ -21,7 +21,7 @@ extern const u8 PokedexRating_Text_LessThan140[]; extern const u8 PokedexRating_Text_LessThan150[]; extern const u8 PokedexRating_Text_Complete[]; -u16 Special_GetPokedexCount(void) +u16 GetPokedexCount(void) { if (gSpecialVar_0x8004 == 0) { @@ -104,7 +104,7 @@ static const u8 *GetProfOaksRatingMessageByCount(u16 count) return PokedexRating_Text_LessThan10; } -void Special_GetProfOaksRatingMessage(void) +void GetProfOaksRatingMessage(void) { ShowFieldMessage(GetProfOaksRatingMessageByCount(gSpecialVar_0x8004)); } |