mirror of
https://github.com/isledecomp/isle.git
synced 2026-01-28 18:51:16 +00:00
Fix
This commit is contained in:
parent
faf1aa422f
commit
4736628da8
@ -531,7 +531,7 @@ void LegoWorld::VTable0x68(MxBool p_und)
|
||||
while (cursor.Next(entity)) {
|
||||
if (entity->GetROI()) {
|
||||
entity->GetROI()->SetUnknown0x104(entity);
|
||||
GetViewManager()->GetUnknown0x08().push_back(entity->GetROI());
|
||||
GetViewManager()->AddToUnknown0x08(entity->GetROI());
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@ -20,11 +20,15 @@ class ViewManager {
|
||||
// SYNTHETIC: LEGO1 0x100a6000
|
||||
// ViewManager::`scalar deleting destructor'
|
||||
|
||||
inline CompoundObject& GetUnknown0x08() { return m_unk0x08; }
|
||||
inline void AddToUnknown0x08(ViewROI* p_roi) { m_unk0x08.push_back(p_roi); }
|
||||
|
||||
private:
|
||||
undefined4 m_unk0x04; // 0x04
|
||||
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
|
||||
|
||||
Loading…
Reference in New Issue
Block a user