Feat: fix scope / spectrum / vumeter
Some checks failed
Deploy Website / deploy (push) Failing after 6s

This commit is contained in:
2026-01-30 21:50:00 +01:00
parent 4049c7787c
commit 4772b02f77
4 changed files with 27 additions and 18 deletions

View File

@@ -174,7 +174,7 @@ pub struct Metrics {
pub peak_voices: usize,
pub cpu_load: f32,
pub schedule_depth: usize,
pub scope: [f32; 64],
pub scope: [f32; 256],
pub peak_left: f32,
pub peak_right: f32,
pub spectrum: [f32; 32],
@@ -190,7 +190,7 @@ impl Default for Metrics {
peak_voices: 0,
cpu_load: 0.0,
schedule_depth: 0,
scope: [0.0; 64],
scope: [0.0; 256],
peak_left: 0.0,
peak_right: 0.0,
spectrum: [0.0; 32],