diff options
author | Lunar Journal <md.node.0@gmail.com> | 2023-09-17 10:47:10 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-17 10:47:10 +0200 |
commit | b6105f6232cee195b78fe0a4a6b3c5b9981daa8a (patch) | |
tree | 5eabb4309abddfd960399d79bf5509f8f2badf66 | |
parent | 3dad721503320ef8dc2aa547775440cc2a9ccdaa (diff) | |
download | emu8910-b6105f6232cee195b78fe0a4a6b3c5b9981daa8a.tar.gz emu8910-b6105f6232cee195b78fe0a4a6b3c5b9981daa8a.zip |
emu8910: core: update driver bias
Change bias to prevent audio artifacts.
-rw-r--r-- | emu8910.js | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -196,7 +196,7 @@ var AudioDriver = /** @class */ (function () { filter[2].connect(filter[3]); filter[3].connect(device.destination); this.host = host; - this.bias = 1 / 100; + this.bias = 0; } return AudioDriver; }()); |