Skip to content

Commit

Permalink
Allow unfiltered channels for EQ APO FIR
Browse files Browse the repository at this point in the history
  • Loading branch information
VoidXH committed Oct 23, 2023
1 parent ae03bff commit 9709019
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions Cavern.QuickEQ.Format/FilterSet/EqualizerAPOFIRFilterSet.cs
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,10 @@ public override void Export(string path) {
List<string> configFile = header != null ? new List<string>(header) : new List<string>();
for (int i = 0; i < Channels.Length; i++) {
FIRChannelData channelRef = (FIRChannelData)Channels[i];
if (channelRef.filter == null) {
continue;
}

string targetLabel = GetLabel(i),
filterRelative = $"{fileNameBase} {channelRef.name ?? targetLabel}.wav",
filterPath = Path.Combine(folder, filterRelative);
Expand Down

0 comments on commit 9709019

Please sign in to comment.