diff options
author | Lunar Journal <md.node.0@gmail.com> | 2025-01-09 18:06:33 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-01-09 18:06:33 +0200 |
commit | 156e364e5b1f6561ca8f31dc69f72afa59a7c0b2 (patch) | |
tree | d6463962bd9aad3ffb4dde2d0f20a82157c8f220 | |
parent | 2b3a3251caedef790fe48da3604403b1990e05d8 (diff) | |
download | emu8910-156e364e5b1f6561ca8f31dc69f72afa59a7c0b2.tar.gz emu8910-156e364e5b1f6561ca8f31dc69f72afa59a7c0b2.zip |
Update emu8910.js
-rw-r--r-- | emu8910.js | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -53,8 +53,8 @@ const YM_CLOCK_ZX = 1750000; const DAC_DECAY = 1.3; const DAC_SHIFT = 40; const CUBIC_INTERPOL = 0.5; -const FIR_CUTOFF = 2000; // Hz -const FIR_TAPS = 200; // N taps +const FIR_CUTOFF = 2100; // Hz +const FIR_TAPS = 50; // N taps var FIR = []; // coeff class Interpolator { constructor() { |