remove low-pitch oscillator, doesn't seem to help

This commit is contained in:
Neale Pickett 2022-06-06 14:19:10 -06:00
parent c64c8b619d
commit 51f89b6762
1 changed files with 4 additions and 2 deletions

View File

@ -220,8 +220,10 @@ class ToneBuzzer extends AudioBuzzer {
this.txOsc = new Oscillator(highFreq, txGain)
// Keep the speaker going always. This keeps the browser from "swapping out" our audio context.
this.bgOsc = new Oscillator(1, 0.001)
this.bgOsc.SoundAt()
if (false) {
this.bgOsc = new Oscillator(1, 0.001)
this.bgOsc.SoundAt()
}
}
/**