From 8fe29412e707265c06e4afd50c1923a636ac4e07 Mon Sep 17 00:00:00 2001 From: Misha Date: Sat, 7 Oct 2023 13:44:50 -0400 Subject: [PATCH] Fix return type --- LEGO1/mxomni.cpp | 2 +- LEGO1/mxomni.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/LEGO1/mxomni.cpp b/LEGO1/mxomni.cpp index 5ad33922..8eb4fbb3 100644 --- a/LEGO1/mxomni.cpp +++ b/LEGO1/mxomni.cpp @@ -358,7 +358,7 @@ MxLong MxOmni::Notify(MxParam &p) } // OFFSET: LEGO1 0x100b0880 STUB -MxLong MxOmni::HandleNotificationType2(MxParam& p_param) +MxResult MxOmni::HandleNotificationType2(MxParam& p_param) { // TODO STUB return FAILURE; diff --git a/LEGO1/mxomni.h b/LEGO1/mxomni.h index 274458ed..5290c6ed 100644 --- a/LEGO1/mxomni.h +++ b/LEGO1/mxomni.h @@ -61,7 +61,7 @@ class MxOmni : public MxCore MxMusicManager* GetMusicManager() const { return this->m_musicManager; } MxEventManager* GetEventManager() const { return this->m_eventManager; } MxAtomIdCounterSet* GetAtomIdCounterSet() const { return this->m_atomIdCounterSet; } - MxLong HandleNotificationType2(MxParam& p_param); + MxResult HandleNotificationType2(MxParam& p_param); protected: static MxOmni* g_instance;