diff options
author | Cameron Hall <camthesaxman@users.noreply.github.com> | 2017-01-10 23:15:38 -0500 |
---|---|---|
committer | YamaArashi <YamaArashi@users.noreply.github.com> | 2017-01-10 20:15:38 -0800 |
commit | 6b0268e0c0fb98014cb72f8a918a33c0645162d2 (patch) | |
tree | 740321923e585db283aaed0c60e46786a01dbb48 /include/global.fieldmap.h | |
parent | 61988bc5ba15fdf1dbc990ec6f2a2d7c5392da00 (diff) |
finish decompiling field_control_avatar.c (#182)
* start decompiling field_control_avatar.c
* remove field_control_player_avatar.c
* finish decompiling
* cleanup
* var and flag constants
Diffstat (limited to 'include/global.fieldmap.h')
-rw-r--r-- | include/global.fieldmap.h | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/include/global.fieldmap.h b/include/global.fieldmap.h index 95ccf2614..de465ac95 100644 --- a/include/global.fieldmap.h +++ b/include/global.fieldmap.h @@ -80,14 +80,15 @@ struct WarpEvent { s16 x, y; s8 warpId; - s8 mapGroup; - s8 mapNum; + u8 mapGroup; + u8 mapNum; + u8 unk7; }; struct CoordEvent { s16 x, y; - u8 filler_4; + u8 unk4; u8 filler_5; u16 trigger; u16 index; @@ -98,7 +99,7 @@ struct CoordEvent struct BgEvent { s16 x, y; - u8 filler_4; + u8 unk4; u8 kind; s16 filler_6; u8 *script; |