This commit is contained in:
Misha 2023-12-26 19:04:36 -05:00
parent 8c228e983b
commit 7e81a3fc29
No known key found for this signature in database
GPG Key ID: 8441D12AEF33FED8
2 changed files with 3 additions and 3 deletions

View File

@ -569,9 +569,9 @@ LegoOmni* LegoOmni::GetInstance()
} }
// FUNCTION: LEGO1 0x1005ad20 // FUNCTION: LEGO1 0x1005ad20
void LegoOmni::AddWorld(LegoWorld* world) void LegoOmni::AddWorld(LegoWorld* p_world)
{ {
m_worldList->Append(world); m_worldList->Append(p_world);
} }
// STUB: LEGO1 0x1005af10 // STUB: LEGO1 0x1005af10

View File

@ -98,7 +98,7 @@ class LegoOmni : public MxOmni {
virtual void StopTimer() override; // vtable+3c virtual void StopTimer() override; // vtable+3c
LegoEntity* FindByEntityIdOrAtomId(const MxAtomId& p_atom, MxS32 p_entityid); LegoEntity* FindByEntityIdOrAtomId(const MxAtomId& p_atom, MxS32 p_entityid);
void AddWorld(LegoWorld* world); void AddWorld(LegoWorld* p_world);
LegoVideoManager* GetVideoManager() { return (LegoVideoManager*) m_videoManager; } LegoVideoManager* GetVideoManager() { return (LegoVideoManager*) m_videoManager; }
LegoSoundManager* GetSoundManager() { return (LegoSoundManager*) m_soundManager; } LegoSoundManager* GetSoundManager() { return (LegoSoundManager*) m_soundManager; }