1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-10-10 16:43:33 +02:00

Bug 667 - High / Low pass filters show nonsense error at 1 Hz -- the math parts of Steve's patch.

This commit is contained in:
v.audacity
2014-03-22 04:11:46 +00:00
parent 74a660ef16
commit f47d14820d
2 changed files with 2 additions and 2 deletions

View File

@@ -24,7 +24,7 @@
be greater than ~a Hz (half of the track sample rate)."
frequency
(truncate (/ *sound-srate* 2.0))))
((<= frequency 1)
((< frequency 1)
(format nil
"Cutoff frequency is set at ~a Hz~%but must be at least 1 Hz."
frequency))

View File

@@ -24,7 +24,7 @@
be greater than ~a Hz (half of the track sample rate)."
frequency
(truncate (/ *sound-srate* 2.0))))
((<= frequency 1)
((< frequency 1)
(format nil
"Cutoff frequency is set at ~a Hz~%but must be at least 1 Hz."
frequency))