diff options
| author | notyourav <65437533+notyourav@users.noreply.github.com> | 2022-02-01 20:01:22 -0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-02-01 20:01:22 -0800 |
| commit | c125fbb7f37863d52cccd99a0c320116fdf0d7da (patch) | |
| tree | f62ed9638d3db09bfc89f5976ac07b8a897bf686 /src/object | |
| parent | a98b65a061f4696c3e83663f058f83ee16d7f4c6 (diff) | |
| parent | d7146c7f1b039580cc912d0d4c9f8f7b18144e7c (diff) | |
Merge pull request #339 from hatal175/fxenum
Diffstat (limited to 'src/object')
| -rw-r--r-- | src/object/gyorgBossObject.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/object/gyorgBossObject.c b/src/object/gyorgBossObject.c index d0cdb38d..89fb9d33 100644 --- a/src/object/gyorgBossObject.c +++ b/src/object/gyorgBossObject.c @@ -338,7 +338,7 @@ void sub_080A1DCC(GyorgBossObjectEntity* this) { void sub_080A1E54(GyorgBossObjectEntity* this) { Entity* fx; if ((++super->actionDelay & 0x1F) == 0) { - fx = CreateFx(super, 0x51, 0); + fx = CreateFx(super, FX_GIANT_EXPLOSION4, 0); if (fx) { u32 r = Random(); fx->x.HALF.HI = gRoomControls.origin_x + 0x200 + (r & 0xf0) - 0x78; @@ -406,7 +406,7 @@ void sub_080A1FF0(GyorgBossObjectEntity* this) { super->actionDelay--; if (super->actionDelay <= 0x20 && (super->actionDelay & 0xF) == 0) { Entity* fx; - fx = CreateFx(super, 0x51, 0); + fx = CreateFx(super, FX_GIANT_EXPLOSION4, 0); if (fx) { u32 r = Random(); fx->x.HALF.HI = gRoomControls.origin_x + 0x200 + (r & 0x78) - 0x3C; |
