mirror of
https://github.com/isledecomp/isle-portable.git
synced 2025-09-24 12:34:27 -04:00
Allow running game without audio device (#426)
* Allow running game without audio device * Remove dot * Add SDL error to message
This commit is contained in:
parent
87b4c0412e
commit
8dbcaf6d65
@ -9,6 +9,8 @@
|
|||||||
#include "mxticklethread.h"
|
#include "mxticklethread.h"
|
||||||
#include "mxwavepresenter.h"
|
#include "mxwavepresenter.h"
|
||||||
|
|
||||||
|
#include <SDL3/SDL_log.h>
|
||||||
|
|
||||||
DECOMP_SIZE_ASSERT(MxSoundManager, 0x3c);
|
DECOMP_SIZE_ASSERT(MxSoundManager, 0x3c);
|
||||||
|
|
||||||
// GLOBAL LEGO1 0x10101420
|
// GLOBAL LEGO1 0x10101420
|
||||||
@ -98,12 +100,17 @@ MxResult MxSoundManager::Create(MxU32 p_frequencyMS, MxBool p_createThread)
|
|||||||
spec.format = SDL_AUDIO_F32;
|
spec.format = SDL_AUDIO_F32;
|
||||||
spec.channels = ma_engine_get_channels(m_engine);
|
spec.channels = ma_engine_get_channels(m_engine);
|
||||||
|
|
||||||
if ((m_stream = SDL_OpenAudioDeviceStream(SDL_AUDIO_DEVICE_DEFAULT_PLAYBACK, &spec, &AudioStreamCallback, this)) ==
|
if ((m_stream = SDL_OpenAudioDeviceStream(SDL_AUDIO_DEVICE_DEFAULT_PLAYBACK, &spec, &AudioStreamCallback, this)) !=
|
||||||
NULL) {
|
NULL) {
|
||||||
goto done;
|
SDL_ResumeAudioDevice(SDL_GetAudioStreamDevice(m_stream));
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
SDL_LogError(
|
||||||
|
SDL_LOG_CATEGORY_APPLICATION,
|
||||||
|
"Failed to open default audio device for playback: %s",
|
||||||
|
SDL_GetError()
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
SDL_ResumeAudioDevice(SDL_GetAudioStreamDevice(m_stream));
|
|
||||||
|
|
||||||
if (p_createThread) {
|
if (p_createThread) {
|
||||||
m_thread = new MxTickleThread(this, p_frequencyMS);
|
m_thread = new MxTickleThread(this, p_frequencyMS);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user