Skip to content

Commit

Permalink
update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
murl-digital committed Mar 15, 2024
1 parent f16d339 commit 00ed329
Show file tree
Hide file tree
Showing 2 changed files with 50 additions and 51 deletions.
98 changes: 49 additions & 49 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 1 addition & 2 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -299,7 +299,6 @@ impl Plugin for ScaleColorizr {
amp * amp_falloff,
40.0,
);
filter.frequency = frequency;
sample = filter.process(sample);
}

Expand Down Expand Up @@ -348,7 +347,7 @@ impl Plugin for ScaleColorizr {
for (voice, displays) in self.voices.iter().zip(self.frequency_display.iter()) {
if let Some(voice) = voice {
for (voice_filter, display) in voice.filters.iter().zip(displays) {
display.store(Some(voice_filter.frequency));
display.store(Some(voice_filter.coefficients.frequency()));
}
} else {
for display in displays {
Expand Down

0 comments on commit 00ed329

Please sign in to comment.