From efa8920d1cc3d7224dfa42004b70e6fb16cadb81 Mon Sep 17 00:00:00 2001 From: Kiooeht Date: Thu, 30 Jun 2011 18:40:12 -0700 Subject: [PATCH] Bug fix: Fix "no soundcard" problem on some debian-based systems --- pesterchum.py | 1 + 1 file changed, 1 insertion(+) diff --git a/pesterchum.py b/pesterchum.py index c6c8769..4c8c64d 100644 --- a/pesterchum.py +++ b/pesterchum.py @@ -2984,6 +2984,7 @@ class MainProgram(QtCore.QObject): # we could set the frequency higher but i love how cheesy it sounds try: pygame.mixer.init() + pygame.mixer.init() except pygame.error, e: print "Warning: No sound! %s" % (e) else: