Add one more gain option

This commit is contained in:
Alex Iribarren
2025-08-25 14:47:14 +02:00
committed by Nachtzuster
parent d20a4334d3
commit a5c7110648
+2 -2
View File
@@ -573,8 +573,8 @@ Channels: ${channels}`
return container;
};
const gainOptions = ["Off", "6", "12", "18", "24"];
const gainValues = { Off: 1, "6": 2, "12": 4, "18": 8, "24": 16 };
const gainOptions = ["Off", "6", "12", "18", "24", "30"];
const gainValues = { Off: 1, "6": 2, "12": 4, "18": 8, "24": 16, "30": 32 };
let activeGain = gainOptions.includes(savedGain) ? savedGain : "Off";
const gainContainer = createOptionSection("Gain (dB):");
const gainButtons = gainOptions.map((opt) =>