diff nagslang/sound.py @ 666:59d28ed05f7c

pygame.mixer.Sound is too clever by half and should be shot repeatedly
author Neil Muller <drnlmuller@gmail.com>
date Sun, 08 Sep 2013 12:35:33 +0200
parents e65d59081bdd
children 1ffd49c34f4a 45d2a6aef3a4
line wrap: on
line diff
--- a/nagslang/sound.py	Sun Sep 08 11:51:51 2013 +0200
+++ b/nagslang/sound.py	Sun Sep 08 12:35:33 2013 +0200
@@ -35,6 +35,9 @@
 
     def init(self):
         mixer.init(FREQ, BITSIZE, CHANNELS, BUFFER)
+        silence = self.load_sound("silence.ogg")
+        if silence.get_length() < 1:
+            raise RuntimeError("Sound load error - silence.ogg too short")
         self.play_sound("silence.ogg")
 
     def load_sound(self, name):