diff options
| author | Andre Weissflog <floooh@gmail.com> | 2023-01-16 13:04:53 +0100 |
|---|---|---|
| committer | Andre Weissflog <floooh@gmail.com> | 2023-01-16 13:04:53 +0100 |
| commit | 7bf3575d83bd2adde77650801e7f71e03cefb564 (patch) | |
| tree | 51bd3566366042f67658a24fac6c90a8041eac13 | |
| parent | 1721898638615fe8a5637745885b3076c794fae3 (diff) | |
sokol_audio.h: SOKOL_LOG => SOKOL_AUDIO
| -rw-r--r-- | sokol_audio.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sokol_audio.h b/sokol_audio.h index 9ec402f0..c0ae29fc 100644 --- a/sokol_audio.h +++ b/sokol_audio.h @@ -2185,22 +2185,22 @@ _SOKOL_PRIVATE bool _saudio_backend_init(void) { if( (*_saudio.backend.engine)->CreateAudioPlayer(_saudio.backend.engine, &_saudio.backend.player_obj, &src, &_saudio.backend.dst_data_sink, sizeof(ids) / sizeof(ids[0]), ids, req) != SL_RESULT_SUCCESS) { - SOKOL_LOG("sokol_audio opensles: CreateAudioPlayer failed"); + SAUDIO_LOG("sokol_audio opensles: CreateAudioPlayer failed"); _saudio_backend_shutdown(); return false; } (*_saudio.backend.player_obj)->Realize(_saudio.backend.player_obj, SL_BOOLEAN_FALSE); if((*_saudio.backend.player_obj)->GetInterface(_saudio.backend.player_obj, SL_IID_PLAY, &_saudio.backend.player) != SL_RESULT_SUCCESS) { - SOKOL_LOG("sokol_audio opensles: GetInterface->Play failed"); + SAUDIO_LOG("sokol_audio opensles: GetInterface->Play failed"); _saudio_backend_shutdown(); return false; } if((*_saudio.backend.player_obj)->GetInterface(_saudio.backend.player_obj, SL_IID_VOLUME, &_saudio.backend.player_vol) != SL_RESULT_SUCCESS) { - SOKOL_LOG("sokol_audio opensles: GetInterface->PlayerVol failed"); + SAUDIO_LOG("sokol_audio opensles: GetInterface->PlayerVol failed"); } if((*_saudio.backend.player_obj)->GetInterface(_saudio.backend.player_obj, SL_IID_ANDROIDSIMPLEBUFFERQUEUE, &_saudio.backend.player_buffer_queue) != SL_RESULT_SUCCESS) { - SOKOL_LOG("sokol_audio opensles: GetInterface->BufferQ failed"); + SAUDIO_LOG("sokol_audio opensles: GetInterface->BufferQ failed"); _saudio_backend_shutdown(); return false; } |