From d49fbfa02c2bbe3086760b15ee3ff6e49ad3acf0 Mon Sep 17 00:00:00 2001 From: digital-apple <115373190+digital-apple@users.noreply.github.com> Date: Mon, 9 Sep 2024 14:26:37 -0300 Subject: [PATCH 1/2] Update ConstructibleObjectMenu.h --- include/RE/C/ConstructibleObjectMenu.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/RE/C/ConstructibleObjectMenu.h b/include/RE/C/ConstructibleObjectMenu.h index c85695fba..ab0c90fb2 100644 --- a/include/RE/C/ConstructibleObjectMenu.h +++ b/include/RE/C/ConstructibleObjectMenu.h @@ -76,7 +76,7 @@ namespace RE // override (CraftingSubMenu) void Accept(CallbackProcessor* a_cbReg) override; // 01 - void Unk_06(void) override; // 06 + void UpdateItemList() override; // 06 void SetItemCardInfo(ItemCard* a_itemCard) override; // 07 // members From 82d9bddc7861292cd6798cd32a4444482bf943cd Mon Sep 17 00:00:00 2001 From: digital-apple <115373190+digital-apple@users.noreply.github.com> Date: Mon, 9 Sep 2024 14:26:52 -0300 Subject: [PATCH 2/2] Update CraftingSubMenu.h --- include/RE/C/CraftingSubMenu.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/RE/C/CraftingSubMenu.h b/include/RE/C/CraftingSubMenu.h index b5acc2a94..f7018ba9f 100644 --- a/include/RE/C/CraftingSubMenu.h +++ b/include/RE/C/CraftingSubMenu.h @@ -30,7 +30,7 @@ namespace RE virtual void Unk_03(void); // 03 - { return; } virtual bool HasItemPreview(); // 04 - { return 1; } virtual bool ProcessUserEvent(BSFixedString* a_control); // 05 - { return 0; } - virtual void Unk_06(void); // 06 - { return; } + virtual void UpdateItemList(); // 06 - { return; } virtual void SetItemCardInfo(ItemCard* a_itemCard); // 07 - { return; } void UpdateCraftingInfo(ActorValue a_actorValue)