0
1
mirror of https://github.com/radio95-rnt/fm95.git synced 2026-02-26 19:23:51 +01:00

this should be fine

This commit is contained in:
2024-12-30 19:31:30 +01:00
parent 7a23c2760a
commit 269f42f115

View File

@@ -143,7 +143,7 @@ float apply_low_pass_filter(LowPassFilter *lp, float sample) {
result += lp->low_pass_fir[0][i] * lp->sample_buffer[index];
index = (index + 1) % FIR_TAPS;
}
return result*4;
return result*6;
}
#endif