Skip to content

Commit 39b691a

Browse files
authored
remove personal multiplier
1 parent af85946 commit 39b691a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

WindowsAudioSession/UI/FFT/FFTPeakDrawer.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ double[] barSizes
8484
maxValue = barSizes[i];
8585
}
8686

87-
var barHeight = Math.Max(0, maxValue * (height - 2 * Margin) / 255d) * 2.15;
87+
var barHeight = Math.Max(0, maxValue * (height - 2 * Margin) / 255d);
8888
var y_top = (y0 + height - 2 * Margin - barHeight);
8989

9090
var bar = _bars[i];

0 commit comments

Comments
 (0)