# HG changeset patch # User Neil Muller # Date 1378636533 -7200 # Node ID a538d791ff9cb78948f91a75a60a77b2c396b059 # Parent 44652ef427adcd20e524880549baae074b9d37de pygame.mixer.Sound is too clever by half and should be shot repeatedly diff -r 44652ef427ad -r a538d791ff9c nagslang/sound.py --- a/nagslang/sound.py Sun Sep 08 10:20:01 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):