Update miniaudio to v0.10.9
Had to add a small bugfix to get it to work
This commit is contained in:
parent
dae87c6106
commit
27a621f923
2 changed files with 25466 additions and 6119 deletions
31519
external/miniaudio.h
vendored
31519
external/miniaudio.h
vendored
File diff suppressed because it is too large
Load diff
|
@ -4,6 +4,10 @@
|
|||
|
||||
#define MINIAUDIO_IMPLEMENTATION
|
||||
#define MA_NO_DECODING
|
||||
#define MA_NO_ENCODING
|
||||
#define MA_NO_WAV
|
||||
#define MA_NO_FLAC
|
||||
#define MA_NO_MP3
|
||||
#define MA_API static
|
||||
#include "../../../external/miniaudio.h"
|
||||
|
||||
|
@ -119,11 +123,11 @@ bool AudioBackend_Init(void)
|
|||
|
||||
if (return_value == MA_SUCCESS)
|
||||
{
|
||||
return_value = ma_mutex_init(device.pContext, &mutex);
|
||||
return_value = ma_mutex_init(&mutex);
|
||||
|
||||
if (return_value == MA_SUCCESS)
|
||||
{
|
||||
return_value = ma_mutex_init(device.pContext, &organya_mutex);
|
||||
return_value = ma_mutex_init(&organya_mutex);
|
||||
|
||||
if (return_value == MA_SUCCESS)
|
||||
{
|
||||
|
|
Loading…
Add table
Reference in a new issue