v2: Mute noise channel temporarily

This commit is contained in:
b1rdmania
2026-01-26 00:12:27 +00:00
parent f829e992c7
commit 7a7a76a92b
+2 -2
View File
@@ -129,9 +129,9 @@ export class GameBoyAPU {
this.initChannelState(config.id); this.initChannelState(config.id);
} }
// Create noise channels - very quiet (2 × 0.02 = 0.04 max) // Create noise channels - MUTED for now
for (const config of CHANNEL_CONFIG.noise) { for (const config of CHANNEL_CONFIG.noise) {
const gain = this.createChannelGain(config.id, 0.02); const gain = this.createChannelGain(config.id, 0);
const channel = new NoiseChannel(this.audioContext, gain, config.mode); const channel = new NoiseChannel(this.audioContext, gain, config.mode);
this.noiseChannels.set(config.id, channel); this.noiseChannels.set(config.id, channel);
this.initChannelState(config.id); this.initChannelState(config.id);