Commit 1e1d7668 authored by David Reid's avatar David Reid

Don't try returning a value in ma_pcm_f32_to_s16__neon().

parent 6a09fb9c
......@@ -43823,7 +43823,8 @@ static MA_INLINE void ma_pcm_f32_to_s16__neon(void* dst, const void* src, ma_uin
float ditherMax;
if (!ma_has_neon()) {
return ma_pcm_f32_to_s16__optimized(dst, src, count, ditherMode);
ma_pcm_f32_to_s16__optimized(dst, src, count, ditherMode);
return;
}
/* Both the input and output buffers need to be aligned to 16 bytes. */
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment