This commit is contained in:
Christian Semmler 2024-05-30 10:21:22 -04:00
parent afcef92cc6
commit 420c359780
2 changed files with 3 additions and 3 deletions

View File

@ -32,7 +32,7 @@ class Lego3DWavePresenter : public MxWavePresenter {
private:
undefined m_unk0x6c[4]; // 0x6c
Lego3DSound m_3dsound; // 0x70
Lego3DSound m_sound; // 0x70
};
#endif // LEGO3DWAVEPRESENTER_H

View File

@ -49,7 +49,7 @@ void Lego3DWavePresenter::StartingTickle()
m_compositePresenter->GetAction()->GetExtra(extraLength, buff);
}
if (m_3dsound.Create(m_dsBuffer, buff, m_volume) != SUCCESS) {
if (m_sound.Create(m_dsBuffer, buff, m_volume) != SUCCESS) {
m_dsBuffer->Release();
m_dsBuffer = NULL;
EndAction();
@ -62,5 +62,5 @@ void Lego3DWavePresenter::StartingTickle()
void Lego3DWavePresenter::StreamingTickle()
{
MxWavePresenter::StreamingTickle();
m_3dsound.FUN_100118e0(m_dsBuffer);
m_sound.FUN_100118e0(m_dsBuffer);
}