Minor adjustments

This commit is contained in:
Christian Semmler 2023-10-05 03:38:46 -04:00
parent 8b3a1e50ed
commit e585ed5ab5
3 changed files with 9 additions and 8 deletions

View File

@ -7,8 +7,6 @@
#include "mxpresenterlist.h"
#include "mxtypes.h"
#include <dsound.h>
// VTABLE 0x100dc6b0
// SIZE 0x2c
class MxMediaManager : public MxCore

View File

@ -29,7 +29,8 @@ void MxSoundManager::Destroy(MxBool p_param)
if (this->m_thread) {
this->m_thread->Terminate();
delete this->m_thread;
} else {
}
else {
TickleManager()->UnregisterClient(this);
}

View File

@ -4,9 +4,10 @@
#include "decomp.h"
#include "mxaudiomanager.h"
#include <dsound.h>
// VTABLE 0x100dc128
// SIZE 0x3c
// Base vtables are: MxCore -> 0x100dc6b0 -> MxAudioManager -> MxSoundManager
class MxSoundManager : public MxAudioManager
{
public:
@ -16,6 +17,7 @@ class MxSoundManager : public MxAudioManager
private:
void Init();
void Destroy(MxBool);
undefined4 m_unk30;
LPDIRECTSOUNDBUFFER m_dsBuffer; // 0x34
undefined m_unk35[4];