This commit is contained in:
Christian Semmler 2024-02-02 11:19:43 -05:00
parent faf1aa422f
commit 4736628da8
2 changed files with 7 additions and 3 deletions

View File

@ -531,7 +531,7 @@ void LegoWorld::VTable0x68(MxBool p_und)
while (cursor.Next(entity)) { while (cursor.Next(entity)) {
if (entity->GetROI()) { if (entity->GetROI()) {
entity->GetROI()->SetUnknown0x104(entity); entity->GetROI()->SetUnknown0x104(entity);
GetViewManager()->GetUnknown0x08().push_back(entity->GetROI()); GetViewManager()->AddToUnknown0x08(entity->GetROI());
} }
} }
} }

View File

@ -20,11 +20,15 @@ class ViewManager {
// SYNTHETIC: LEGO1 0x100a6000 // SYNTHETIC: LEGO1 0x100a6000
// ViewManager::`scalar deleting destructor' // ViewManager::`scalar deleting destructor'
inline CompoundObject& GetUnknown0x08() { return m_unk0x08; } inline void AddToUnknown0x08(ViewROI* p_roi) { m_unk0x08.push_back(p_roi); }
private: private:
undefined4 m_unk0x04; // 0x04
CompoundObject m_unk0x08; // 0x08 CompoundObject m_unk0x08; // 0x08
undefined m_pad[0x1cc]; // 0x14 undefined m_pad[0x1c8]; // 0x14
}; };
// TEMPLATE: LEGO1 0x10022030
// list<ROI *,allocator<ROI *> >::insert
#endif // VIEWMANAGER_H #endif // VIEWMANAGER_H