Fix comment.

This commit is contained in:
J.D. Purcell 2015-09-20 23:51:40 -04:00
parent 320e55e5fd
commit d852ce5519

View File

@ -260,7 +260,7 @@ namespace Nikse.SubtitleEdit.Core
PeaksPerSecond = Math.Min(Configuration.Settings.VideoControls.WaveformMinimumSampleRate, Header.SampleRate);
// Ensure that peaks per second is a multiple of the sample rate
// Ensure that peaks per second is a factor of the sample rate
while (Header.SampleRate % PeaksPerSecond != 0)
PeaksPerSecond++;