diff options
author | Mateusz Naściszewski <matin1111@wp.pl> | 2020-12-26 06:57:02 +0100 |
---|---|---|
committer | Seth Barberee <seth.barberee@gmail.com> | 2020-12-28 20:13:22 -0600 |
commit | 6362345b04a04fefec25fdb29fd1b1bb9f8da163 (patch) | |
tree | 84059fefe70ebab180e8f5efcc5d2208abd28275 /include | |
parent | b64320b043fe0a774327d7d880e9f16605db54ee (diff) |
Decompile UpdateInput
and some other minor stuff.
Diffstat (limited to 'include')
-rw-r--r-- | include/input.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/include/input.h b/include/input.h index 0c4208d..1d8547a 100644 --- a/include/input.h +++ b/include/input.h @@ -3,19 +3,19 @@ struct UnkInputStruct1 { - /* 0x0 */ u16 unk0; - /* 0x2 */ u16 unk2; + /* 0x0 */ u16 held; + /* 0x2 */ u16 pressed; /* 0x4 */ u16 unk4; /* 0x6 */ u16 unk6; /* 0x8 */ u16 unk8; /* 0xA */ u16 unkA; - /* 0xC */ u32 unkC; + /* 0xC */ s32 repeatTimer; }; struct UnkInputStruct2 { - /* 0x0 */ u16 unk0; - /* 0x2 */ u16 unk2; + /* 0x0 */ s16 holdTimerB; + /* 0x2 */ s16 holdTimerR; /* 0x4 */ u16 unk4; /* 0x6 */ u16 unk6; }; |