From 79a05aa6dc3111af5b54402c878eec7619a69a0b Mon Sep 17 00:00:00 2001 From: Sonic Dreamcaster Date: Sun, 17 Nov 2024 15:05:44 -0300 Subject: [PATCH] fix tank wheels in macbeth --- src/engine/fox_tank.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/engine/fox_tank.c b/src/engine/fox_tank.c index f99eba90..37046d84 100644 --- a/src/engine/fox_tank.c +++ b/src/engine/fox_tank.c @@ -491,7 +491,8 @@ void func_tank_80044868(Player* player) { func_tank_80043280(D_landmaster_3005EA8, D_TI_6009BB8, gGameFrameCount * -55.0f); } if ((gCurrentLevel == LEVEL_MACBETH) && (player->state_1C8 == PLAYERSTATE_1C8_LEVEL_COMPLETE)) { - func_tank_80043280(D_landmaster_3005EA8, D_Tex_800DACB8, gGameFrameCount * -55.0f); + // Using D_TI_6009BB8 since it's the same texture, D_Tex_800DACB8 might be imported incorrectly. + func_tank_80043280(D_landmaster_3005EA8, /* D_Tex_800DACB8 */ D_TI_6009BB8, gGameFrameCount * -55.0f); } } if (player->baseSpeed > 10.0f) {