Converted Get(Box)MonData2 to proper functions (#3416)
This commit is contained in:
parent
0f979ac796
commit
6016c606d6
1 changed files with 8 additions and 2 deletions
|
@ -4719,7 +4719,10 @@ u32 GetMonData3(struct Pokemon *mon, s32 field, u8 *data)
|
|||
return ret;
|
||||
}
|
||||
|
||||
u32 GetMonData2(struct Pokemon *mon, s32 field) __attribute__((alias("GetMonData3")));
|
||||
u32 GetMonData2(struct Pokemon *mon, s32 field)
|
||||
{
|
||||
return GetMonData3(mon, field, NULL);
|
||||
}
|
||||
|
||||
/* GameFreak called GetBoxMonData with either 2 or 3 arguments, for type
|
||||
* safety we have a GetBoxMonData macro (in include/pokemon.h) which
|
||||
|
@ -5089,7 +5092,10 @@ u32 GetBoxMonData3(struct BoxPokemon *boxMon, s32 field, u8 *data)
|
|||
return retVal;
|
||||
}
|
||||
|
||||
u32 GetBoxMonData2(struct BoxPokemon *boxMon, s32 field) __attribute__((alias("GetBoxMonData3")));
|
||||
u32 GetBoxMonData2(struct BoxPokemon *boxMon, s32 field)
|
||||
{
|
||||
return GetBoxMonData3(boxMon, field, NULL);
|
||||
}
|
||||
|
||||
#define SET8(lhs) (lhs) = *data
|
||||
#define SET16(lhs) (lhs) = data[0] + (data[1] << 8)
|
||||
|
|
Loading…
Reference in a new issue