diff options
| author | Elliptic Ellipsis <elliptic.ellipsis@gmail.com> | 2022-03-18 23:16:15 +0000 |
|---|---|---|
| committer | Elliptic Ellipsis <elliptic.ellipsis@gmail.com> | 2022-03-18 23:16:15 +0000 |
| commit | 7780c76eac79febc6ad31a77e25637e2372522da (patch) | |
| tree | 5310cb232f85b63dcff6f661c8c85fddb1d1af1b /src/projectile/stalfosProjectile.c | |
| parent | d6c8cf025095f5e13d8dce1179bead030918320d (diff) | |
Correct type of sub_0806F520 and use it as a bool
Diffstat (limited to 'src/projectile/stalfosProjectile.c')
| -rw-r--r-- | src/projectile/stalfosProjectile.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/projectile/stalfosProjectile.c b/src/projectile/stalfosProjectile.c index 841a68e3..3f8f679d 100644 --- a/src/projectile/stalfosProjectile.c +++ b/src/projectile/stalfosProjectile.c @@ -38,7 +38,7 @@ void sub_080A9A34(Entity* this) { } void sub_080A9A64(Entity* this) { - if ((this->subAction < 3) && (sub_0806F520(this) == 0)) { + if ((this->subAction < 3) && !sub_0806F520(this)) { sub_080A9BA8(this); } StalfosProjectile_SubActions[this->subAction](this); |
