Fix return type

This commit is contained in:
Misha 2023-10-07 13:44:50 -04:00
parent 50ace43e32
commit 8fe29412e7
2 changed files with 2 additions and 2 deletions

View File

@ -358,7 +358,7 @@ MxLong MxOmni::Notify(MxParam &p)
} }
// OFFSET: LEGO1 0x100b0880 STUB // OFFSET: LEGO1 0x100b0880 STUB
MxLong MxOmni::HandleNotificationType2(MxParam& p_param) MxResult MxOmni::HandleNotificationType2(MxParam& p_param)
{ {
// TODO STUB // TODO STUB
return FAILURE; return FAILURE;

View File

@ -61,7 +61,7 @@ class MxOmni : public MxCore
MxMusicManager* GetMusicManager() const { return this->m_musicManager; } MxMusicManager* GetMusicManager() const { return this->m_musicManager; }
MxEventManager* GetEventManager() const { return this->m_eventManager; } MxEventManager* GetEventManager() const { return this->m_eventManager; }
MxAtomIdCounterSet* GetAtomIdCounterSet() const { return this->m_atomIdCounterSet; } MxAtomIdCounterSet* GetAtomIdCounterSet() const { return this->m_atomIdCounterSet; }
MxLong HandleNotificationType2(MxParam& p_param); MxResult HandleNotificationType2(MxParam& p_param);
protected: protected:
static MxOmni* g_instance; static MxOmni* g_instance;