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

@ -48,7 +48,14 @@ LegoWorldPresenter::~LegoWorldPresenter()
} }
if (m_objectBackend) { 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)); NotificationManager()->Send(m_objectBackend, &MxNotificationParam(c_notificationNewPresenter, NULL));
#endif
} }
} }

View File

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