From 01d6f92bd0522ee128a25254e04e1b85ebd9dfb8 Mon Sep 17 00:00:00 2001 From: Sonic Dreamcaster Date: Sat, 23 Nov 2024 19:50:35 -0300 Subject: [PATCH] fix macbeth Boulders --- src/overlays/ovl_i5/fox_ma.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/overlays/ovl_i5/fox_ma.c b/src/overlays/ovl_i5/fox_ma.c index 23b49d06..9f3823fc 100644 --- a/src/overlays/ovl_i5/fox_ma.c +++ b/src/overlays/ovl_i5/fox_ma.c @@ -3803,8 +3803,8 @@ void Macbeth_MaFallingBoulder_Update(MaFallingBoulder* this) { } Macbeth_MaBoulder_Spawn(this->obj.pos.x, this->obj.pos.y, this->obj.pos.z, - (RAND_FLOAT(2.0f) + 20.0f) * (signed int) this->iwork[4], 0.0f, - (signed int) this->iwork[4] * -34.0f, 0.0f, 2, 3); + (RAND_FLOAT(2.0f) + 20.0f) * (s32) this->iwork[4], 0.0f, + (s32) this->iwork[4] * -34.0f, 0.0f, 2, 3); Object_Kill(&this->obj, this->sfxSource); } }