summaryrefslogtreecommitdiff
path: root/src/object/object86.c
diff options
context:
space:
mode:
authorTal Hayon <talhayon1@gmail.com>2022-01-29 16:21:57 +0200
committerTal Hayon <talhayon1@gmail.com>2022-01-30 00:32:10 +0200
commitb4f8429a2c951dbf6b92edd865f6a63c166301cb (patch)
tree898ba9d60e688da0ba432f7d70e421c898ea34da /src/object/object86.c
parentd34aa9166f5d9f7958e586ae1daee3224eb11fa5 (diff)
Use PlayerFlags where possible
Diffstat (limited to 'src/object/object86.c')
-rw-r--r--src/object/object86.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/object/object86.c b/src/object/object86.c
index e6968b42..38692deb 100644
--- a/src/object/object86.c
+++ b/src/object/object86.c
@@ -69,5 +69,5 @@ void sub_08099ECC(Entity* this) {
CopyPosition(this, &gPlayerEntity);
gPlayerState.queued_action = PLAYER_FALL;
gPlayerState.field_0x34[4] = 0;
- gPlayerState.flags |= 0x8000;
+ gPlayerState.flags |= PL_FLAGS8000;
}