diff options
author | Seth Barberee <seth.barberee@gmail.com> | 2020-11-20 10:33:21 -0600 |
---|---|---|
committer | Seth Barberee <seth.barberee@gmail.com> | 2020-11-20 10:33:21 -0600 |
commit | cbfab08a06d7f9deca21b510b1bbdb80c05ea662 (patch) | |
tree | a2eb93d47fe4f69e057c8b364ff30fd6c237a6bb /include/time.h | |
parent | 5f8105180b15f04d48c72df2953d267c87d6148c (diff) |
finish docing PlayTime and fix function - Kermalis
Diffstat (limited to 'include/time.h')
-rw-r--r-- | include/time.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/include/time.h b/include/time.h index b052ea1..9aeb28d 100644 --- a/include/time.h +++ b/include/time.h @@ -3,15 +3,16 @@ struct PlayTimeStruct { - s16 unk0; - u8 hours; + s16 hours; u8 minutes; u8 seconds; + u8 frames; }; -void sub_8094FB4(struct PlayTimeStruct *Time); +void IncrementPlayTime(struct PlayTimeStruct *Time); void ResetPlayTime(struct PlayTimeStruct *Time); struct PlayTimeStruct *sub_8094FA0(void); +void DeconstructPlayTime(struct PlayTimeStruct *r0, u32 *outHours, u32 *outMinutes, u32 *outSeconds); void sub_8094F88(void); |