aboutsummaryrefslogtreecommitdiff
path: root/drums.py
diff options
context:
space:
mode:
Diffstat (limited to 'drums.py')
-rw-r--r--drums.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/drums.py b/drums.py
index 62d8ae0..d3c1a58 100644
--- a/drums.py
+++ b/drums.py
@@ -38,6 +38,7 @@ if not args:
def rgb_for_freq_amp(f, a):
pitchval = float(f - options.low_freq) / (options.high_freq - options.low_freq)
+ a = max((min((a, 1.0)), 0.0))
if options.log_base == 0:
try:
pitchval = math.log(pitchval) / math.log(options.log_base)