summaryrefslogtreecommitdiffstats
path: root/Demo/sgi/al/playaiff.py
diff options
context:
space:
mode:
Diffstat (limited to 'Demo/sgi/al/playaiff.py')
-rwxr-xr-xDemo/sgi/al/playaiff.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Demo/sgi/al/playaiff.py b/Demo/sgi/al/playaiff.py
index 756748d..22120dc 100755
--- a/Demo/sgi/al/playaiff.py
+++ b/Demo/sgi/al/playaiff.py
@@ -49,6 +49,6 @@ def makeport(nchannels, sampwidth, samprate):
def play(p, data, offset, blocksize):
data = data[offset:]
p.writesamps(data)
- while p.getfilled() > 0: time.millisleep(10)
+ while p.getfilled() > 0: time.sleep(0.01)
main()