aboutsummaryrefslogtreecommitdiff
path: root/drums.py
diff options
context:
space:
mode:
authorGraham Northup <grissess@nexusg.org>2017-10-02 16:14:07 -0400
committerGraham Northup <grissess@nexusg.org>2017-10-02 16:14:07 -0400
commit4135f3a6f2b763fa6c952e2fd580b30b9e31d548 (patch)
treead26f120554f8d20e1a94aef2087407c675f1490 /drums.py
parent12f9e5ecaa7c4362d80b4aa5a5391b9132ac1cab (diff)
Minor bugfixes and featurefixes:
- shiv now assumes -a if you give it no other options; - broadcast now displays a cute spinny and progress bar when playing without -v set - drums.py obeys -V when testing (-t)
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 1ee7c1e..a6d8399 100644
--- a/drums.py
+++ b/drums.py
@@ -123,7 +123,7 @@ if options.test:
print 'Current playing:', PLAYING
print 'Playing:', frq
data = DRUMS[frq]
- PLAYING.append(SampleReader(data, len(data), 1.0))
+ PLAYING.append(SampleReader(data, len(data), options.volume))
time.sleep(len(data) / (4.0 * options.rate))
print 'Done'
exit()