Skip to content

Commit 6daf005

Browse files
committed
Fixed calling the SSE function directly instead of the wrapper function.
1 parent 37e6d13 commit 6daf005

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mojoal.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1556,7 +1556,7 @@ static void mix_buffer(ALsource *src, const ALbuffer *buffer, const int output_c
15561556
}
15571557
} else if (output_channels == 2) {
15581558
if (buffer->spec.channels == 1) {
1559-
mix_float32_mono_to_stereo_sse(panning, data, stream, mixframes);
1559+
mix_float32_mono_to_stereo(panning, data, stream, mixframes);
15601560
} else if (buffer->spec.channels == 2) {
15611561
mix_float32_stereo_to_stereo(panning, data, stream, mixframes);
15621562
}

0 commit comments

Comments
 (0)