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/npc/cat.c | |
| parent | 33579844948ca5c2ed9e1e353fba8b9571f7104d (diff) | |
cleanup
Diffstat (limited to 'src/npc/cat.c')
| -rw-r--r-- | src/npc/cat.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/npc/cat.c b/src/npc/cat.c index 9de7337d..8ff4860d 100644 --- a/src/npc/cat.c +++ b/src/npc/cat.c @@ -102,7 +102,7 @@ void sub_080678AC(Entity* this) { sub_08067AAC(this); } else { UpdateAnimationSingleFrame(this); - if ((this->frame & 0x80) != 0) { + if ((this->frame & ANIM_DONE) != 0) { sub_08067B34(this); } } @@ -137,7 +137,7 @@ void sub_08067904(Entity* this) { void sub_0806797C(Entity* this) { UpdateAnimationSingleFrame(this); - if (this->frame & 0x80) { + if (this->frame & ANIM_DONE) { sub_08067B08(this); } } @@ -166,7 +166,7 @@ void sub_08067A0C(Entity* this) { u8 tmp; UpdateAnimationSingleFrame(this); - if (this->frame & 0x80) { + if (this->frame & ANIM_DONE) { if (sub_08067D20(this) != 0) { sub_08067B80(this, 5); this->actionDelay = this->actionDelay + 0x14; @@ -186,7 +186,7 @@ void sub_08067A0C(Entity* this) { void sub_08067A78(Entity* this) { UpdateAnimationSingleFrame(this); - if (this->frame & 0x80) { + if (this->frame & ANIM_DONE) { sub_08067AAC(this); } } |
