diff options
| author | octorock <79596758+octorock@users.noreply.github.com> | 2022-02-12 20:00:08 +0100 |
|---|---|---|
| committer | octorock <79596758+octorock@users.noreply.github.com> | 2022-02-12 20:03:27 +0100 |
| commit | b69a6d223c72bc4b88fef1527225d06854219f34 (patch) | |
| tree | c6c018bb7e10d4e8a326f057283a91661ecaccf8 /src/enemy/keaton.c | |
| parent | d6c79aa26346afc85bcfa724d3c086fb06c888dc (diff) | |
Rename movement functions
Diffstat (limited to 'src/enemy/keaton.c')
| -rw-r--r-- | src/enemy/keaton.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/enemy/keaton.c b/src/enemy/keaton.c index 2e13814b..340a9be5 100644 --- a/src/enemy/keaton.c +++ b/src/enemy/keaton.c @@ -74,7 +74,7 @@ void sub_0803248C(Entity* this) { if (this->actionDelay == 0) { sub_08032650(this); } - if (ProcessMovement(this) == 0) { + if (ProcessMovement0(this) == 0) { this->actionDelay = 1; } UpdateAnimationSingleFrame(this); @@ -126,7 +126,7 @@ void sub_08032574(Entity* this) { return; } - if (--this->field_0x76.HWORD == 0 || !sub_080AEFE0(this)) { + if (--this->field_0x76.HWORD == 0 || !ProcessMovement2(this)) { sub_0803275C(this); return; } |
