This commit is contained in:
Misha 2024-01-12 16:33:16 -05:00
parent 008aed7c87
commit 4a728c2d75
No known key found for this signature in database
GPG Key ID: 8441D12AEF33FED8
3 changed files with 8 additions and 2 deletions

View File

@ -65,7 +65,7 @@ class LegoWorld : public LegoEntity {
undefined4 m_unk0xec; // 0xec
undefined4 m_unk0xf0; // 0xf0
MxS16 m_unk0xf4; // 0xf4
MxBool m_worldStarted; // 0xf6
MxBool m_worldStarted; // 0xf6
undefined m_unk0xf7; // 0xf7
};

View File

@ -48,7 +48,14 @@ LegoWorldPresenter::~LegoWorldPresenter()
}
if (m_objectBackend) {
#ifdef COMPAT_MODE
{
MxNotificationParam param(c_notificationNewPresenter, NULL);
NotificationManager()->Send(m_objectBackend, &param);
}
#else
NotificationManager()->Send(m_objectBackend, &MxNotificationParam(c_notificationNewPresenter, NULL));
#endif
}
}

View File

@ -39,7 +39,6 @@ void LegoAnimationManager::InitForWorld(undefined4)
// TODO
}
// STUB: LEGO1 0x100619f0
MxLong LegoAnimationManager::Notify(MxParam& p_param)
{