From d9829fac089575e39f0042276ab7d88ff27c7fe5 Mon Sep 17 00:00:00 2001 From: David Joslin Date: Mon, 13 Nov 2023 20:58:05 -0800 Subject: [PATCH] Add support for any layer in mirror --- src/game/mario_misc.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/game/mario_misc.c b/src/game/mario_misc.c index 5a12849c0..620f8c1e2 100644 --- a/src/game/mario_misc.c +++ b/src/game/mario_misc.c @@ -742,8 +742,8 @@ Gfx* geo_mirror_mario_backface_culling(s32 callContext, struct GraphNode* node, gSPEndDisplayList(&gfx[2]); } u32 layer = ((asGenerated->parameter & 0x02) == 2) ? LAYER_TRANSPARENT : LAYER_OPAQUE; - if ((asGenerated->parameter & 0xFC) != 0) { - layer = asGenerated->parameter >> 2; + if ((asGenerated->parameter & 0xF0)) { + layer = asGenerated->parameter >> 0xF; } asGenerated->fnNode.node.flags = (asGenerated->fnNode.node.flags & 0xFF) | (layer << 8); }