Fixed sound/sound.c to also make sound card filters operate on channel 1.

This commit is contained in:
OBattler
2020-10-19 02:30:16 +02:00
parent 166bb68763
commit 9e15cb034f

View File

@@ -293,7 +293,7 @@ sound_cd_thread(void *param)
/* Apply sound card CD volume and filters */
if (filter_cd_audio != NULL) {
filter_cd_audio(0, &(cd_buffer_temp[0]), filter_cd_audio_p);
filter_cd_audio(1, &(cd_buffer_temp[0]), filter_cd_audio_p);
filter_cd_audio(1, &(cd_buffer_temp[1]), filter_cd_audio_p);
}
if (sound_is_float) {