From 1ee55e4a1e0e4a592c11e9413f59de5095cef46e Mon Sep 17 00:00:00 2001 From: Qudix <17361645+Qudix@users.noreply.github.com> Date: Mon, 1 Jul 2024 14:05:26 -0500 Subject: [PATCH] fix: `IMenu::depthPriority` aren't flags --- CommonLibF4/include/RE/Bethesda/IMenu.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CommonLibF4/include/RE/Bethesda/IMenu.h b/CommonLibF4/include/RE/Bethesda/IMenu.h index 67a01fea..a7b9840a 100644 --- a/CommonLibF4/include/RE/Bethesda/IMenu.h +++ b/CommonLibF4/include/RE/Bethesda/IMenu.h @@ -400,7 +400,7 @@ namespace RE bool menuCanBeVisible{ true }; // 61 bool hasQuadsForCumstomRenderer{ false }; // 62 bool hasDoneFirstAdvanceMovie{ false }; // 63 - REX::EnumSet depthPriority{ UI_DEPTH_PRIORITY::kStandard }; // 64 + UI_DEPTH_PRIORITY depthPriority{ UI_DEPTH_PRIORITY::kStandard }; // 64 REX::EnumSet inputContext{ UserEvents::INPUT_CONTEXT_ID::kNone }; // 68 }; static_assert(sizeof(IMenu) == 0x70);