Skip to content

Commit

Permalink
dB marker for YPAO exports
Browse files Browse the repository at this point in the history
  • Loading branch information
VoidXH committed Apr 19, 2024
1 parent 66f982e commit 19efc2c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Cavern.QuickEQ.Format/FilterSet/YPAOFilterSet.cs
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ public override void Export(string path) {
for (int j = 0; j < filters.Length;) {
BiquadFilter filter = filters[j];
result.Add($"Filter {++j} - Frequency: {frequencies.Nearest((float)filter.CenterFreq)}, Q factor: " +
$"{qFactors.Nearest((float)filter.Q)}, gain: {filter.Gain}");
$"{qFactors.Nearest((float)filter.Q)}, gain: {filter.Gain} dB");
}
}
File.WriteAllLines(path, result);
Expand Down

0 comments on commit 19efc2c

Please sign in to comment.