summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGriffinR <25753467+GriffinRichards@users.noreply.github.com>2019-08-02 22:23:40 -0400
committerGitHub <noreply@github.com>2019-08-02 22:23:40 -0400
commit851a814912a671102fe91ce1220d0fd01fe853f3 (patch)
tree88c122c801b9385dac578853b08d6db3822d7a22
parentcff8331a8f52fb4293acbd4fb09c0fcd968367d6 (diff)
typo fix
-rw-r--r--src/pokenav_match_call_data.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/pokenav_match_call_data.c b/src/pokenav_match_call_data.c
index 02d9b698d..d2d89babf 100644
--- a/src/pokenav_match_call_data.c
+++ b/src/pokenav_match_call_data.c
@@ -758,7 +758,7 @@ static bool32 (*const sMatchCallGetFlagFuncs[])(match_call_t) = {
MatchCallGetFlag_Type3
};
-static u8 (*const sMatchCallGetMapsecFuncs[])(match_call_t) = {
+static u8 (*const sMatchCallGetMapSecFuncs[])(match_call_t) = {
MatchCallGetMapSec_Type0,
MatchCallGetMapSec_Type1,
MatchCallGetMapSec_Type2,
@@ -907,7 +907,7 @@ u8 MatchCallMapSecGetByIndex(u32 idx)
return 0;
matchCall = sMatchCallHeaders[idx];
i = MatchCallGetFunctionIndex(matchCall);
- return sMatchCallGetMapsecFuncs[i](matchCall);
+ return sMatchCallGetMapSecFuncs[i](matchCall);
}
static u8 MatchCallGetMapSec_Type0(match_call_t matchCall)