aboutsummaryrefslogtreecommitdiff
path: root/drums.py
diff options
context:
space:
mode:
Diffstat (limited to 'drums.py')
-rw-r--r--drums.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/drums.py b/drums.py
index 89faca9..ffa7792 100644
--- a/drums.py
+++ b/drums.py
@@ -248,7 +248,7 @@ while True:
dur = pkt.data[0]+pkt.data[1]/1000000.0
dframes = int(dur * options.rate)
if not options.repeat:
- dframes = max(dframes, rframes)
+ dframes = min(dframes, rframes)
if not options.cut:
dframes = rframes * ((dframes + rframes - 1) / rframes)
amp = options.volume * pkt.as_float(3)