Skip to content

Commit

Permalink
delete unused variable in equalizer.rs
Browse files Browse the repository at this point in the history
  • Loading branch information
raleighlittles committed Nov 27, 2024
1 parent fa8a4de commit 3c3e198
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions parser/src/equalizer.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ pub struct EqualizerPreset {
pub equalizer_preamp_value_raw: i32,
pub equalizer_preamp_value_db: f32,
pub equalizer_num_of_bands: u8,
pub equalizer_settings: Vec<EqualizerFrequencySetting>
}

impl Default for EqualizerPreset {
Expand All @@ -18,7 +17,6 @@ impl Default for EqualizerPreset {
equalizer_preamp_value_raw: 0,
equalizer_preamp_value_db: 0.0,
equalizer_num_of_bands: 0,
equalizer_settings: Vec::new()
};
}
}
Expand Down

0 comments on commit 3c3e198

Please sign in to comment.