diff options
Diffstat (limited to 'PC/winsound.c')
-rw-r--r-- | PC/winsound.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/PC/winsound.c b/PC/winsound.c index 7feebcbcf4..fd04e1e55b 100644 --- a/PC/winsound.c +++ b/PC/winsound.c @@ -29,7 +29,7 @@ # Start playing the first bit of wav file asynchronously winsound.PlaySound('c:/windows/media/Chord.wav', winsound.SND_FILENAME|winsound.SND_ASYNC) - # But dont let it go for too long... + # But don't let it go for too long... time.sleep(0.1) # ...Before stopping it winsound.PlaySound(None, 0) |