Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
stevehjohn committed Aug 10, 2024
1 parent bf39d2b commit d14262b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Zen.Desktop.Host/Features/SpectrumAnalyser.cs
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ private void RenderSpectrumChannel(int channel)
}
else
{
if (Environment.TickCount64 - _peakTimes[channel][i] > 100 && _peaks[channel][i] > 0)
if (Environment.TickCount64 - _peakTimes[channel][i] > 250 && _peaks[channel][i] > 0)
{
_peaks[channel][i]--;
}
Expand Down

0 comments on commit d14262b

Please sign in to comment.