diff options
author | GriffinR <25753467+GriffinRichards@users.noreply.github.com> | 2019-08-02 12:30:00 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-08-02 12:30:00 -0400 |
commit | 37ebfa40f995ea911174ca6fd2dbc0d847da1e94 (patch) | |
tree | 7c8b523ab8644c51911cb1e3b7452ee395888529 | |
parent | cf253062b9cc40f72bc3f1008b9cfa02cf123d10 (diff) |
Two more uses of MAPSEC_NONE and mapSec field name
-rw-r--r-- | src/pokenav_match_call_data.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/pokenav_match_call_data.c b/src/pokenav_match_call_data.c index d33f30c1c..1da60f3a2 100644 --- a/src/pokenav_match_call_data.c +++ b/src/pokenav_match_call_data.c @@ -43,7 +43,7 @@ struct MatchCallStruct1 { struct MatchCallSubstruct2 { u16 flag; - u8 v2; + u8 mapSec; }; struct MatchCallStruct2 { @@ -929,17 +929,17 @@ static u8 sub_81D171C(match_call_t matchCall) if (!FlagGet(matchCall.type2->v10[i].flag)) break; } - return matchCall.type2->v10[i].v2; + return matchCall.type2->v10[i].mapSec; } static u8 sub_81D1750(match_call_t matchCall) { - return 0xd5; + return MAPSEC_NONE; } static u8 sub_81D1754(match_call_t matchCall) { - return 0xd5; + return MAPSEC_NONE; } bool32 MatchCall_IsRematchable(u32 idx) |