From 211263295cd8768d63c1426025cf913ba6bedc18 Mon Sep 17 00:00:00 2001 From: feacur Date: Thu, 7 Nov 2024 11:21:09 +0100 Subject: [PATCH] fix (?) fidgetTable size following the https://github.com/zeldaret/oot/pull/2287#discussion_r1832371833 suggestion --- src/overlays/actors/ovl_En_Mu/z_en_mu.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/overlays/actors/ovl_En_Mu/z_en_mu.h b/src/overlays/actors/ovl_En_Mu/z_en_mu.h index 5ad4c34eca..0ff9e5bed2 100644 --- a/src/overlays/actors/ovl_En_Mu/z_en_mu.h +++ b/src/overlays/actors/ovl_En_Mu/z_en_mu.h @@ -16,7 +16,8 @@ typedef struct EnMu { /* 0x01E0 */ NpcInteractInfo npcInfo; /* 0x0208 */ u16 defaultTextId; /* 0x020A */ s16 fidgetTableY[16]; - /* 0x022A */ s16 fidgetTableZ[17]; // @note: looks like a bug, usually tables match + /* 0x022A */ s16 fidgetTableZ[16]; + /* 0x024A */ s16 unk_24A; } EnMu; // size = 0x024C #endif