Skip to content

Commit

Permalink
vst3: fix bug in format_to_speaker_arrangement
Browse files Browse the repository at this point in the history
  • Loading branch information
micahrj committed Mar 28, 2024
1 parent 829fa75 commit 0218553
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/format/vst3/component.rs
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ use crate::util::{slice_from_raw_parts_checked, DisplayParam};

fn format_to_speaker_arrangement(format: &Format) -> SpeakerArrangement {
match format {
Format::Mono => SpeakerArr::kStereo,
Format::Mono => SpeakerArr::kMono,
Format::Stereo => SpeakerArr::kStereo,
}
}
Expand Down

0 comments on commit 0218553

Please sign in to comment.