From 4d2b0ec9b9a647c7866ce5b04ec42b2840ec9416 Mon Sep 17 00:00:00 2001 From: powerof3 <32599957+powerof3@users.noreply.github.com> Date: Wed, 13 Dec 2023 21:24:22 +0530 Subject: [PATCH] Add 1.5.97 `InterfaceStrings` defs --- include/RE/I/InterfaceStrings.h | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/include/RE/I/InterfaceStrings.h b/include/RE/I/InterfaceStrings.h index 82354a4b6..50666b59e 100644 --- a/include/RE/I/InterfaceStrings.h +++ b/include/RE/I/InterfaceStrings.h @@ -65,7 +65,9 @@ namespace RE BSFixedString creditsMenu; // 188 - "Credits Menu" BSFixedString modManagerMenu; // 190 - "Mod Manager Menu" BSFixedString creationClubMenu; // 198 - "Creation Club Menu" +#ifndef SKYRIM_SUPPORT_AE BSFixedString marketplaceMenu; // 1A0 - "Marketplace Menu" +#endif BSFixedString titleSequenceMenu; // 1A8 - "TitleSequence Menu" BSFixedString consoleNativeUIMenu; // 1B0 - "Console Native UI Menu" BSFixedString kinectMenu; // 1B8 - "Kinect Menu" @@ -89,9 +91,15 @@ namespace RE BSFixedString refreshMenu; // 248 - "RefreshMenu" BSFixedString cancelLoading; // 250 - "CancelLoading" BSFixedString menuTextureDegradeEvent; // 258 - "Menu Texture Degrade Event" +#ifndef SKYRIM_SUPPORT_AE BSFixedString userSettingsLoaded; // 260 - "UserSettingsLoaded" BSFixedString activityStarted; // 268 - "ActivityStarted" +#endif BSFixedString diamondMarker; // 270 - "" }; +#ifndef SKYRIM_SUPPORT_AE static_assert(sizeof(InterfaceStrings) == 0x278); +#else + static_assert(sizeof(InterfaceStrings) == 0x260); +#endif }