diff options
author | ProjectRevoTPP <projectrevotpp@hotmail.com> | 2017-01-20 17:43:41 -0500 |
---|---|---|
committer | YamaArashi <YamaArashi@users.noreply.github.com> | 2017-01-20 14:43:41 -0800 |
commit | cf0a4dbb86f164026fa2028ef5d0d4a5a419c9c3 (patch) | |
tree | b7daf555678f46533ad5fcc245f58790290acf36 /include | |
parent | 9274e189277ab6ec4d4efb90cb9e18145a8fec38 (diff) |
start decompiling bike.c (#203)
* start decompiling bike.c
* decompile more of bike.c
* decompile MovePlayerOnAcroBike and CheckMovementInputAcroBike
Diffstat (limited to 'include')
-rw-r--r-- | include/global.fieldmap.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/include/global.fieldmap.h b/include/global.fieldmap.h index de465ac95..64c2e8181 100644 --- a/include/global.fieldmap.h +++ b/include/global.fieldmap.h @@ -302,7 +302,7 @@ struct MapObjectGraphicsInfo #define PLAYER_AVATAR_FLAG_6 (1 << 6) #define PLAYER_AVATAR_FLAG_DASH (1 << 7) -struct PlayerAvatar +struct PlayerAvatar /* 0x202E858 */ { /*0x00*/ u8 flags; /*0x01*/ u8 bike; @@ -312,6 +312,10 @@ struct PlayerAvatar /*0x05*/ u8 mapObjectId; /*0x06*/ u8 unk6; /*0x07*/ u8 gender; + u8 unk8; + u8 unk9; + u8 unkA; + u8 unkB; // TODO: rest of struct }; |