diff --git a/research/miniaudio_engine.h b/research/miniaudio_engine.h index cb298cbe..4c005155 100644 --- a/research/miniaudio_engine.h +++ b/research/miniaudio_engine.h @@ -12261,7 +12261,7 @@ MA_API ma_result ma_sound_start(ma_sound* pSound) /* If the sound is at the end it means we want to start from the start again. */ if (ma_sound_at_end(pSound)) { ma_result result = ma_data_source_seek_to_pcm_frame(pSound->pDataSource, 0); - if (result != MA_SUCCESS) { + if (result != MA_SUCCESS && result != MA_NOT_IMPLEMENTED) { return result; /* Failed to seek back to the start. */ }