diff --git a/LEGO1/lego/legoomni/include/legocachesoundmanager.h b/LEGO1/lego/legoomni/include/legocachesoundmanager.h index 4c598678..0856aa70 100644 --- a/LEGO1/lego/legoomni/include/legocachesoundmanager.h +++ b/LEGO1/lego/legoomni/include/legocachesoundmanager.h @@ -57,10 +57,11 @@ class LegoCacheSoundManager { LegoCacheSound* FindSoundByKey(const char* p_key); LegoCacheSound* ManageSoundEntry(LegoCacheSound* p_sound); LegoCacheSound* Play(const char* p_key, const char* p_name, MxBool p_looping); - LegoCacheSound* Play(LegoCacheSound* p_sound, const char* p_name, MxBool p_looping); void Destroy(LegoCacheSound*& p_sound); private: + LegoCacheSound* Play(LegoCacheSound* p_sound, const char* p_name, MxBool p_looping); + Set100d6b4c m_set; // 0x04 List100d6b4c m_list; // 0x14 }; diff --git a/LEGO1/lego/legoomni/src/audio/legocachesoundmanager.cpp b/LEGO1/lego/legoomni/src/audio/legocachesoundmanager.cpp index b20a7185..36445ce7 100644 --- a/LEGO1/lego/legoomni/src/audio/legocachesoundmanager.cpp +++ b/LEGO1/lego/legoomni/src/audio/legocachesoundmanager.cpp @@ -106,7 +106,6 @@ LegoCacheSound* LegoCacheSoundManager::ManageSoundEntry(LegoCacheSound* p_sound) // FUNCTION: LEGO1 0x1003dae0 LegoCacheSound* LegoCacheSoundManager::Play(const char* p_key, const char* p_name, MxBool p_looping) { - // DECOMP: Second parameter is LegoRoi::m_name (0xe4) return Play(FindSoundByKey(p_key), p_name, p_looping); }