OPTiMC: Don't factor in the SB mixer OPL volumes

This commit is contained in:
Cacodemon345
2022-11-20 14:23:46 +06:00
parent a1fc3f06f4
commit 8ce046fd51

View File

@@ -76,6 +76,8 @@ optimc_filter_opl(void* priv, double* out_l, double* out_r)
optimc_t *optimc = (optimc_t *) priv;
if (optimc->cur_wss_enabled) {
*out_l /= optimc->sb->mixer_sbpro.fm_l;
*out_r /= optimc->sb->mixer_sbpro.fm_r;
ad1848_filter_aux2((void*)&optimc->ad1848, out_l, out_r);
}
}