fix build

This commit is contained in:
Misha 2023-10-07 08:11:36 -04:00
parent 8318638382
commit ccd5da0175
2 changed files with 3 additions and 3 deletions

View File

@ -100,9 +100,9 @@ void SetOmniUserMessage(void (*p_userMsg)(const char *,int))
}
// OFFSET: LEGO1 0x100acf50
MxResult Start(MxDSAction& p_dsAction)
MxResult Start(MxDSAction* p_dsAction)
{
return MxOmni::GetInstance()->Start(&p_dsAction);
return MxOmni::GetInstance()->Start(p_dsAction);
}
// OFFSET: LEGO1 0x1005ad10

View File

@ -110,7 +110,7 @@ __declspec(dllexport) LegoEntity * PickEntity(MxLong,MxLong);
__declspec(dllexport) LegoROI * PickROI(MxLong,MxLong);
__declspec(dllexport) void SetOmniUserMessage(void (*)(const char *,int));
__declspec(dllexport) LegoSoundManager * SoundManager();
__declspec(dllexport) MxResult Start(MxDSAction&);
__declspec(dllexport) MxResult Start(MxDSAction*);
__declspec(dllexport) MxTransitionManager * TransitionManager();
__declspec(dllexport) LegoVideoManager * VideoManager();