diff options
| author | Lunar Journal <md.node.0@gmail.com> | 2023-09-17 10:46:13 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-09-17 10:46:13 +0200 |
| commit | 3dad721503320ef8dc2aa547775440cc2a9ccdaa (patch) | |
| tree | 37bc658c3d5b993e801f7ada72e946094d2390b6 | |
| parent | 00ea36d4630aea641bfcac5fdaa82a776039c05a (diff) | |
| download | emu8910-3dad721503320ef8dc2aa547775440cc2a9ccdaa.tar.gz emu8910-3dad721503320ef8dc2aa547775440cc2a9ccdaa.zip | |
emu8910: change driver bias
Set bias to 0 to prevent audio artifacts.
| -rw-r--r-- | src/emu8910.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emu8910.ts b/src/emu8910.ts index 180399b..892df35 100644 --- a/src/emu8910.ts +++ b/src/emu8910.ts @@ -269,7 +269,7 @@ class AudioDriver { filter[3].connect(device.destination); this.host = host; - this.bias = 1/100; + this.bias = 0; } |
