summaryrefslogtreecommitdiff
path: root/src/object/pushableStatue.c
diff options
context:
space:
mode:
authortheo3 <arisstephenson2@gmail.com>2022-03-28 19:51:32 -0700
committertheo3 <arisstephenson2@gmail.com>2022-03-28 20:10:22 -0700
commit92240d43147dd36ed879ce1084f7ca6e35f1db96 (patch)
tree78a3119e1cd63d4f3333a3cade6cc622cdcb6db1 /src/object/pushableStatue.c
parent755571834d4fc0e21fdd45b065728c87574a3a07 (diff)
name remaining entity fields
Diffstat (limited to 'src/object/pushableStatue.c')
-rw-r--r--src/object/pushableStatue.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/object/pushableStatue.c b/src/object/pushableStatue.c
index 3074fcff..c94f81fb 100644
--- a/src/object/pushableStatue.c
+++ b/src/object/pushableStatue.c
@@ -50,7 +50,7 @@ void PushableStatue_Init(PushableStatueEntity* this) {
super->speed = 0x80;
super->updatePriority = 3;
super->hitbox = (Hitbox*)&gUnk_080FD1F4;
- super->field_0x16 = 1;
+ super->carryFlags = 1;
this->unk_86 = 0;
sub_08089454(this);
sub_080894C8(this);
@@ -153,7 +153,7 @@ void PushableStatue_Action3(PushableStatueEntity* this) {
}
void PushableStatue_Action4(PushableStatueEntity* this) {
- if (--super->actionDelay != 0) {
+ if (--super->timer != 0) {
super->spriteSettings.draw ^= 1;
} else {
super->spriteSettings.draw = 1;
@@ -226,7 +226,7 @@ bool32 sub_080895C0(PushableStatueEntity* this) {
super->y.HALF.HI += gUnk_08120CBC[(super->direction >> 2) + 1];
sub_08089454(this);
super->action = 4;
- super->actionDelay = 0x3c;
+ super->timer = 0x3c;
}
sub_0800445C(super);
return FALSE;