aboutsummaryrefslogtreecommitdiff
path: root/drums.py
diff options
context:
space:
mode:
authorGraham Northup <grissess@nexusg.org>2017-02-21 23:43:16 -0500
committerGraham Northup <grissess@nexusg.org>2017-02-21 23:44:05 -0500
commit12f9e5ecaa7c4362d80b4aa5a5391b9132ac1cab (patch)
treed411c28f5410a68156d5d1e2ce5cbec5127eeaf7 /drums.py
parent19d054741ba632d4cc664b89e694d07fe0b568f1 (diff)
How was drums.py working...
Also minorly improved stability of mkiv.py
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 b912af5..1ee7c1e 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.add(SampleReader(data, len(data), 1.0))
+ PLAYING.append(SampleReader(data, len(data), 1.0))
time.sleep(len(data) / (4.0 * options.rate))
print 'Done'
exit()