summaryrefslogtreecommitdiff
path: root/src/prof_pc.c
diff options
context:
space:
mode:
authorPikalaxALT <PikalaxALT@users.noreply.github.com>2019-10-24 17:22:11 -0400
committerGitHub <noreply@github.com>2019-10-24 17:22:11 -0400
commit7579fc65c12bd46c045d10eb8cd9a2320fd1f3f0 (patch)
treeb8b08638a6d8ae195dbdc4b17d1e91a6d301b073 /src/prof_pc.c
parent6e36c229200e083ca005cbc448e99210d111f3b2 (diff)
parent4fae71a4b0723fac867cbeb439feb3fc71664f0e (diff)
Merge pull request #132 from PikalaxALT/field_specials
Field specials
Diffstat (limited to 'src/prof_pc.c')
-rw-r--r--src/prof_pc.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/prof_pc.c b/src/prof_pc.c
index aeabc8644..d1f06a2ba 100644
--- a/src/prof_pc.c
+++ b/src/prof_pc.c
@@ -36,7 +36,7 @@ u16 Special_GetPokedexCount(void)
return IsNationalPokedexEnabled();
}
-const u8 * sub_80CA424(u16 count)
+static const u8 *GetProfOaksRatingMessageByCount(u16 count)
{
gSpecialVar_Result = FALSE;
@@ -102,7 +102,7 @@ const u8 * sub_80CA424(u16 count)
return gUnknown_81A6D17;
}
-void sub_80CA524(void)
+void Special_GetProfOaksRatingMessage(void)
{
- ShowFieldMessage(sub_80CA424(gSpecialVar_0x8004));
+ ShowFieldMessage(GetProfOaksRatingMessageByCount(gSpecialVar_0x8004));
}