diff options
| author | theo3 <arisstephenson2@gmail.com> | 2022-03-17 19:13:56 -0700 |
|---|---|---|
| committer | theo3 <arisstephenson2@gmail.com> | 2022-03-17 19:16:43 -0700 |
| commit | ef470547e04f2cbc50b98d6578932f1188d25dbd (patch) | |
| tree | 4a5e5bffb8ea301bd15b8bda4627c48ccf052cce /src/enemy/wallMaster.c | |
| parent | 33579844948ca5c2ed9e1e353fba8b9571f7104d (diff) | |
cleanup
Diffstat (limited to 'src/enemy/wallMaster.c')
| -rw-r--r-- | src/enemy/wallMaster.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/enemy/wallMaster.c b/src/enemy/wallMaster.c index 7f08b67e..b9377a19 100644 --- a/src/enemy/wallMaster.c +++ b/src/enemy/wallMaster.c @@ -112,7 +112,7 @@ void sub_0802A610(Entity* this) { GetNextFrame(this); sub_0802A7D0(this); - flags = this->frame & 0x80; + flags = this->frame & ANIM_DONE; if (flags) { this->action = 4; this->actionDelay = 0x1e; @@ -154,7 +154,7 @@ void sub_0802A69C(Entity* this) { /* sigh... */ GetNextFrame(this); - flags = this->frame & 0x80; + flags = this->frame & ANIM_DONE; if (flags) { this->action = 6; this->actionDelay = 0x1e; @@ -193,7 +193,7 @@ void sub_0802A78C(Entity* this) { void sub_0802A7D0(Entity* this) { u32 unk = gUnk_080CD0B0[(this->field_0x7c.BYTES.byte1++ >> 3) & 7] + 0x100; - sub_0805EC9C(this, unk, unk, 0); + SetAffineInfo(this, unk, unk, 0); } // clang-format off void (*const WallMaster_Functions[])(Entity*) = { |
