@@ -194,11 +194,18 @@ namespace RE
194194 virtual void DoClearData (); // 0D
195195 virtual void DoClearSink (); // 0E
196196
197- void RepopulateItemCardOnSection (ENUM_FORM_ID itemTypeID )
197+ void AddItemCardInfoEntry ( const BSFixedStringCS* a_string, float a_value, PipboyArray* a_itemCardSection )
198198 {
199- using func_t = decltype (&PipboyInventoryData::RepopulateItemCardOnSection);
200- static REL::Relocation<func_t > func{ ID::PipboyInventoryData::RepopulateItemCardOnSection };
201- return func (this , itemTypeID);
199+ using func_t = decltype (&PipboyInventoryData::AddItemCardInfoEntry);
200+ static REL::Relocation<func_t > func{ ID::PipboyInventoryData::AddItemCardInfoEntry };
201+ return func (this , a_string, a_value, a_itemCardSection);
202+ }
203+
204+ PipboyObject* BaseAddItemCardInfoEntry (const BSFixedStringCS* a_string, PipboyArray* a_itemCardSection)
205+ {
206+ using func_t = decltype (&PipboyInventoryData::BaseAddItemCardInfoEntry);
207+ static REL::Relocation<func_t > func{ ID::PipboyInventoryData::BaseAddItemCardInfoEntry };
208+ return func (this , a_string, a_itemCardSection);
202209 }
203210
204211 void PopulateItemCardInfo (const BGSInventoryItem* a_inventoryItem, const BGSInventoryItem::Stack* a_stack, PipboyObject* a_data)
@@ -208,18 +215,18 @@ namespace RE
208215 return func (this , a_inventoryItem, a_stack, a_data);
209216 }
210217
211- void AddItemCardInfoEntry ( const BSFixedStringCS* a_string, float a_value, PipboyArray* a_itemCardSection )
218+ void QueueItemCardRepopulate (ENUM_FORM_ID a_formType )
212219 {
213- using func_t = decltype (&PipboyInventoryData::AddItemCardInfoEntry );
214- static REL::Relocation<func_t > func{ ID::PipboyInventoryData::AddItemCardInfoEntry };
215- return func (this , a_string, a_value, a_itemCardSection );
220+ using func_t = decltype (&PipboyInventoryData::QueueItemCardRepopulate );
221+ static REL::Relocation<func_t > func{ ID::PipboyInventoryData::QueueItemCardRepopulate };
222+ return func (this , a_formType );
216223 }
217224
218- PipboyObject* BaseAddItemCardInfoEntry ( const BSFixedStringCS* a_string, PipboyArray* a_itemCardSection )
225+ void RepopulateItemCardOnSection (ENUM_FORM_ID a_itemTypeID )
219226 {
220- using func_t = decltype (&PipboyInventoryData::BaseAddItemCardInfoEntry );
221- static REL::Relocation<func_t > func{ ID::PipboyInventoryData::BaseAddItemCardInfoEntry };
222- return func (this , a_string, a_itemCardSection );
227+ using func_t = decltype (&PipboyInventoryData::RepopulateItemCardOnSection );
228+ static REL::Relocation<func_t > func{ ID::PipboyInventoryData::RepopulateItemCardOnSection };
229+ return func (this , a_itemTypeID );
223230 }
224231
225232 // members
0 commit comments