Extend low-pass floor to 50 Hz across 0-100 range

This commit is contained in:
Jage9
2026-02-21 03:02:13 -05:00
parent b30349032a
commit f52cc04f26
2 changed files with 2 additions and 2 deletions

View File

@@ -1,5 +1,5 @@
// Maintainer-controlled web client version. // Maintainer-controlled web client version.
// Format: YYYY.MM.DD Rn (example: 2026.02.20 R2) // Format: YYYY.MM.DD Rn (example: 2026.02.20 R2)
window.CHGRID_WEB_VERSION = "2026.02.21 R85"; window.CHGRID_WEB_VERSION = "2026.02.21 R86";
// Optional display timezone for timestamps. Falls back to America/Detroit if unset/invalid. // Optional display timezone for timestamps. Falls back to America/Detroit if unset/invalid.
window.CHGRID_TIME_ZONE = "America/Detroit"; window.CHGRID_TIME_ZONE = "America/Detroit";

View File

@@ -61,7 +61,7 @@ export function connectEffectChain(
if (effect === 'high_pass') { if (effect === 'high_pass') {
filter.frequency.value = 120 + effectMix * 7000; filter.frequency.value = 120 + effectMix * 7000;
} else { } else {
filter.frequency.value = 7800 - effectMix * 7600; filter.frequency.value = 7800 - effectMix * 7750;
} }
filter.Q.value = 0.7 + effectMix * 8; filter.Q.value = 0.7 + effectMix * 8;
input.connect(filter); input.connect(filter);