diff options
author | Graham Northup <grissess@nexusg.org> | 2017-10-02 16:14:07 -0400 |
---|---|---|
committer | Graham Northup <grissess@nexusg.org> | 2017-10-02 16:14:07 -0400 |
commit | 4135f3a6f2b763fa6c952e2fd580b30b9e31d548 (patch) | |
tree | ad26f120554f8d20e1a94aef2087407c675f1490 /drums.py | |
parent | 12f9e5ecaa7c4362d80b4aa5a5391b9132ac1cab (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.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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() |