diff options
author | GriffinR <griffin.g.richards@gmail.com> | 2021-10-26 14:29:44 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-26 14:29:44 -0400 |
commit | f9f91be60a6e21eb2c9bd87ac67865e05296eab8 (patch) | |
tree | 230f93ac894e13bd9043d11cef2a4b6f7f35ef2f /berry_fix/payload | |
parent | d6571f2355d356431809668e8e905606a28ce7cf (diff) | |
parent | bd9ea239256ecdb716e31c9063102cf52f972f93 (diff) |
Merge pull request #1527 from cbt6/field-player
Document field player functions
Diffstat (limited to 'berry_fix/payload')
-rw-r--r-- | berry_fix/payload/include/global.fieldmap.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/berry_fix/payload/include/global.fieldmap.h b/berry_fix/payload/include/global.fieldmap.h index d5ab0812e..e7150b429 100644 --- a/berry_fix/payload/include/global.fieldmap.h +++ b/berry_fix/payload/include/global.fieldmap.h @@ -219,14 +219,14 @@ struct EventObjectGraphicsInfo /*0x20*/ const union AffineAnimCmd *const *affineAnims; }; -#define PLAYER_AVATAR_FLAG_ON_FOOT (1 << 0) -#define PLAYER_AVATAR_FLAG_MACH_BIKE (1 << 1) -#define PLAYER_AVATAR_FLAG_ACRO_BIKE (1 << 2) -#define PLAYER_AVATAR_FLAG_SURFING (1 << 3) -#define PLAYER_AVATAR_FLAG_UNDERWATER (1 << 4) -#define PLAYER_AVATAR_FLAG_5 (1 << 5) -#define PLAYER_AVATAR_FLAG_6 (1 << 6) -#define PLAYER_AVATAR_FLAG_DASH (1 << 7) +#define PLAYER_AVATAR_FLAG_ON_FOOT (1 << 0) +#define PLAYER_AVATAR_FLAG_MACH_BIKE (1 << 1) +#define PLAYER_AVATAR_FLAG_ACRO_BIKE (1 << 2) +#define PLAYER_AVATAR_FLAG_SURFING (1 << 3) +#define PLAYER_AVATAR_FLAG_UNDERWATER (1 << 4) +#define PLAYER_AVATAR_FLAG_CONTROLLABLE (1 << 5) +#define PLAYER_AVATAR_FLAG_FORCED_MOVE (1 << 6) +#define PLAYER_AVATAR_FLAG_DASH (1 << 7) enum { |