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;
|
return container;
|
||||||
};
|
};
|
||||||
|
|
||||||
const gainOptions = ["Off", "6", "12", "18", "24"];
|
const gainOptions = ["Off", "6", "12", "18", "24", "30"];
|
||||||
const gainValues = { Off: 1, "6": 2, "12": 4, "18": 8, "24": 16 };
|
const gainValues = { Off: 1, "6": 2, "12": 4, "18": 8, "24": 16, "30": 32 };
|
||||||
let activeGain = gainOptions.includes(savedGain) ? savedGain : "Off";
|
let activeGain = gainOptions.includes(savedGain) ? savedGain : "Off";
|
||||||
const gainContainer = createOptionSection("Gain (dB):");
|
const gainContainer = createOptionSection("Gain (dB):");
|
||||||
const gainButtons = gainOptions.map((opt) =>
|
const gainButtons = gainOptions.map((opt) =>
|
||||||
|
|||||||
Reference in New Issue
Block a user