diff options
author | PikalaxALT <pikalaxalt@gmail.com> | 2017-09-29 22:25:20 -0400 |
---|---|---|
committer | PikalaxALT <pikalaxalt@gmail.com> | 2017-09-29 22:25:20 -0400 |
commit | 9f736e58afff3e3e3be1398ceebac93614ec70e1 (patch) | |
tree | 033f5ac6ed0741084b2d5e6053dcc058d21df42f /include/global.h | |
parent | 6235276ca255a2b345c3a97be23c6b53be6eba0f (diff) |
Rename daycare structs to be slightly less insensible
Diffstat (limited to 'include/global.h')
-rw-r--r-- | include/global.h | 19 |
1 files changed, 7 insertions, 12 deletions
diff --git a/include/global.h b/include/global.h index 43a105162..ac28507e8 100644 --- a/include/global.h +++ b/include/global.h @@ -562,16 +562,11 @@ struct GabbyAndTyData struct DayCareMail { - /*0x00*/ struct MailStruct mail; + /*0x00*/ struct MailStruct message; /*0x24*/ u8 names[19]; }; -struct DayCareMailExtra_RecordMixing { - u32 unk70; - u16 unk74[2]; -}; - -struct DayCareMailExtra_EggData { +struct DayCareStepCountersEtc { u32 steps[2]; u16 personalityLo; u8 unk_11a; @@ -579,20 +574,20 @@ struct DayCareMailExtra_EggData { struct RecordMixingDayCareMail { - struct DayCareMail data[2]; + struct DayCareMail mail[2]; u32 unk70; u16 unk74[2]; }; -struct DayCareMailEtc +struct DayCareMisc { - struct DayCareMail data[2]; - struct DayCareMailExtra_EggData egg; + struct DayCareMail mail[2]; + struct DayCareStepCountersEtc countersEtc; }; struct DayCareData { struct BoxPokemon mons[2]; - struct DayCareMailEtc mail; + struct DayCareMisc misc; }; struct LinkBattleRecord |