summaryrefslogtreecommitdiff
path: root/src/enemy/bobomb.c
diff options
context:
space:
mode:
authorHenny022p <73211432+Henny022p@users.noreply.github.com>2026-02-08 18:32:38 +0100
committerGitHub <noreply@github.com>2026-02-08 18:32:38 +0100
commit5ab63f00e522ff69c5bc987e379f0163943f2833 (patch)
tree53622222ac729c6ab6dc75ef7f9bafa8031daf18 /src/enemy/bobomb.c
parent73901a0a012d55ebb66a4627dcb246d19737fcb5 (diff)
parent5b2cafdc894823d57beee8f3947a391d881d91de (diff)
Merge pull request #701 from Henny022p/cleanup/250302HEADmaster
Various code cleanup changes
Diffstat (limited to 'src/enemy/bobomb.c')
-rw-r--r--src/enemy/bobomb.c8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/enemy/bobomb.c b/src/enemy/bobomb.c
index f1ae158b..0fc89c5c 100644
--- a/src/enemy/bobomb.c
+++ b/src/enemy/bobomb.c
@@ -7,9 +7,11 @@
#include "asm.h"
#include "collision.h"
#include "enemy.h"
-#include "functions.h"
-#include "object.h"
#include "sound.h"
+#include "effects.h"
+#include "object.h"
+#include "physics.h"
+#include "player.h"
typedef struct {
/*0x00*/ Entity base;
@@ -177,7 +179,7 @@ void sub_0802C91C(BobombEntity* this) {
sub_0802CBC4(this);
} else {
if ((super->timer & 0xf) == 8) {
- CreateDustSmall(super);
+ CreateDashFx(super);
}
sub_0802CC18(this);
}