diff options
| author | David Reid <[email protected]> | 2017-11-21 06:35:38 +1000 |
|---|---|---|
| committer | David Reid <[email protected]> | 2017-11-21 06:35:38 +1000 |
| commit | c71b01c8ac824f3c519ce181fc029d8d62102073 (patch) | |
| tree | 457b7bf045d18c2805bc49cb69904d3477045f09 /src/external | |
| parent | 14b889be4127f5ce96ad9c74bc90cbb0dad771c2 (diff) | |
| download | raylib-c71b01c8ac824f3c519ce181fc029d8d62102073.tar.gz raylib-c71b01c8ac824f3c519ce181fc029d8d62102073.zip | |
Update mini_al with fixes for OpenSL and SDL backends.
Diffstat (limited to 'src/external')
| -rw-r--r-- | src/external/mini_al.h | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/src/external/mini_al.h b/src/external/mini_al.h index df0f560e..164709d9 100644 --- a/src/external/mini_al.h +++ b/src/external/mini_al.h @@ -9750,14 +9750,18 @@ mal_result mal_device_start(mal_device* pDevice) // Asynchronous backends need to be handled differently. #ifdef MAL_HAS_OPENSL if (pDevice->pContext->backend == mal_backend_opensl) { - mal_device__start_backend__opensl(pDevice); - mal_device__set_state(pDevice, MAL_STATE_STARTED); + result = mal_device__start_backend__opensl(pDevice); + if (result == MAL_SUCCESS) { + mal_device__set_state(pDevice, MAL_STATE_STARTED); + } } else #endif #ifdef MAL_HAS_SDL if (pDevice->pContext->backend == mal_backend_sdl) { - mal_device__start_backend__sdl(pDevice); - mal_device__set_state(pDevice, MAL_STATE_STARTED); + result = mal_device__start_backend__sdl(pDevice); + if (result == MAL_SUCCESS) { + mal_device__set_state(pDevice, MAL_STATE_STARTED); + } } else #endif // Synchronous backends. @@ -11275,6 +11279,7 @@ void mal_pcm_f32_to_s32(int* pOut, const float* pIn, unsigned int count) // - Add mal_convert_frames(). This is a high-level helper API for performing a one-time, bulk conversion of // audio data to a different format. // - Improvements to f32 -> u8/s16/s24/s32 conversion routines. +// - Fix a bug where the wrong value is returned from mal_device_start() for the OpenSL and SDL backends. // - Warning fixes. // // v0.5 - 2017-11-11 |
