mirror of
https://github.com/isledecomp/isle-portable.git
synced 2024-11-23 07:58:21 -05:00
1d3ce6b0aa
* Implement/match remaining MxWavePresenter functions * Name m_unk65 * Match WriteToSoundBuffer * Remove header * Match StreamingTickle * Name more variables * Give names to some things
17 lines
287 B
C++
17 lines
287 B
C++
#include "mxaudiopresenter.h"
|
|
|
|
#include "decomp.h"
|
|
|
|
DECOMP_SIZE_ASSERT(MxAudioPresenter, 0x54);
|
|
|
|
// OFFSET: LEGO1 0x1000d260
|
|
MxS32 MxAudioPresenter::GetVolume()
|
|
{
|
|
return m_volume;
|
|
}
|
|
|
|
// OFFSET: LEGO1 0x1000d270
|
|
void MxAudioPresenter::SetVolume(MxS32 p_volume)
|
|
{
|
|
m_volume = p_volume;
|
|
}
|