This commit is contained in:
2026-01-23 01:42:07 +01:00
parent 10e2812e4c
commit 1bb5ba0061
12 changed files with 256 additions and 9 deletions

View File

@@ -21,6 +21,8 @@ pub struct AudioSettings {
pub struct DisplaySettings {
pub fps: u32,
pub runtime_highlight: bool,
pub show_scope: bool,
pub show_spectrum: bool,
}
#[derive(Debug, Serialize, Deserialize)]
@@ -46,6 +48,8 @@ impl Default for DisplaySettings {
Self {
fps: 60,
runtime_highlight: false,
show_scope: true,
show_spectrum: true,
}
}
}