mirror of
https://github.com/isledecomp/isle.git
synced 2024-11-22 15:48:09 -05:00
Fix MxMusicManager::InitializeMIDI return type
This commit is contained in:
parent
30b35981d3
commit
5d79ac9436
2 changed files with 2 additions and 2 deletions
|
@ -27,7 +27,7 @@ class MxMusicManager : public MxAudioManager {
|
|||
|
||||
MxResult ResetStream();
|
||||
void ResetBuffer();
|
||||
undefined4 InitializeMIDI(MxU8* p_data, MxS32 p_loopCount);
|
||||
MxResult InitializeMIDI(MxU8* p_data, MxS32 p_loopCount);
|
||||
void DeinitializeMIDI();
|
||||
void SetMultiplier(MxS32 p_multiplier);
|
||||
|
||||
|
|
|
@ -204,7 +204,7 @@ MxS32 MxMusicManager::CalculateVolume(MxS32 p_volume)
|
|||
}
|
||||
|
||||
// FUNCTION: LEGO1 0x100c09c0
|
||||
undefined4 MxMusicManager::InitializeMIDI(MxU8* p_data, MxS32 p_loopCount)
|
||||
MxResult MxMusicManager::InitializeMIDI(MxU8* p_data, MxS32 p_loopCount)
|
||||
{
|
||||
MxResult result = FAILURE;
|
||||
|
||||
|
|
Loading…
Reference in a new issue