diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/save.h | 4 | ||||
-rw-r--r-- | include/time.h | 19 |
2 files changed, 21 insertions, 2 deletions
diff --git a/include/save.h b/include/save.h index f507acc..37309cf 100644 --- a/include/save.h +++ b/include/save.h @@ -9,8 +9,8 @@ struct unkTimeStruct struct UnkStruct_203B184 { /* 0x0 */ u32 *unk0; /* 0x4 */ u32 *unk4; - /* 0x8 */ u32 *unk8; - /* 0xC */ u32 *unkC; + /* 0x8 */ u8 *unk8; + /* 0xC */ u8 *unkC; /* 0x10 */ u32 *unk10; /* 0x14 */ u32 *unk14; /* 0x18 */ u32 unk18; diff --git a/include/time.h b/include/time.h new file mode 100644 index 0000000..b052ea1 --- /dev/null +++ b/include/time.h @@ -0,0 +1,19 @@ +#ifndef TIME_H +#define TIME_H + +struct PlayTimeStruct +{ + s16 unk0; + u8 hours; + u8 minutes; + u8 seconds; +}; + +void sub_8094FB4(struct PlayTimeStruct *Time); +void ResetPlayTime(struct PlayTimeStruct *Time); +struct PlayTimeStruct *sub_8094FA0(void); +void sub_8094F88(void); + + +#endif // TIME_H + |