summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--emu8910.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/emu8910.js b/emu8910.js
index 2e8ba92..6883c78 100644
--- a/emu8910.js
+++ b/emu8910.js
@@ -55,10 +55,10 @@ const DAC_SHIFT = 40;
const CUBIC_INTERPOL = 0.5;
-const FIR_CUTOFF = 6000; // Hz
+const FIR_CUTOFF = 5000; // Hz
const FIR_TAPS = 25; // N taps
-const WAVE_OVERSAMPLE = 8;
+const WAVE_OVERSAMPLE = 16;
var FIR = []; // coeff
class Interpolator {