typo fix
This commit is contained in:
parent
cff8331a8f
commit
851a814912
1 changed files with 2 additions and 2 deletions
|
@ -758,7 +758,7 @@ static bool32 (*const sMatchCallGetFlagFuncs[])(match_call_t) = {
|
||||||
MatchCallGetFlag_Type3
|
MatchCallGetFlag_Type3
|
||||||
};
|
};
|
||||||
|
|
||||||
static u8 (*const sMatchCallGetMapsecFuncs[])(match_call_t) = {
|
static u8 (*const sMatchCallGetMapSecFuncs[])(match_call_t) = {
|
||||||
MatchCallGetMapSec_Type0,
|
MatchCallGetMapSec_Type0,
|
||||||
MatchCallGetMapSec_Type1,
|
MatchCallGetMapSec_Type1,
|
||||||
MatchCallGetMapSec_Type2,
|
MatchCallGetMapSec_Type2,
|
||||||
|
@ -907,7 +907,7 @@ u8 MatchCallMapSecGetByIndex(u32 idx)
|
||||||
return 0;
|
return 0;
|
||||||
matchCall = sMatchCallHeaders[idx];
|
matchCall = sMatchCallHeaders[idx];
|
||||||
i = MatchCallGetFunctionIndex(matchCall);
|
i = MatchCallGetFunctionIndex(matchCall);
|
||||||
return sMatchCallGetMapsecFuncs[i](matchCall);
|
return sMatchCallGetMapSecFuncs[i](matchCall);
|
||||||
}
|
}
|
||||||
|
|
||||||
static u8 MatchCallGetMapSec_Type0(match_call_t matchCall)
|
static u8 MatchCallGetMapSec_Type0(match_call_t matchCall)
|
||||||
|
|
Loading…
Reference in a new issue