Add one more gain option
This commit is contained in:
committed by
Nachtzuster
parent
d20a4334d3
commit
a5c7110648
@@ -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) =>
|
||||
|
||||
Reference in New Issue
Block a user