Revision: 1358
Author: ccanepacc
Date: Sat Mar 22 11:50:27 2014 UTC
Log: flipping a debug flag in SDL audio
http://code.google.com/p/los-cocos/source/detail?r=1358
Modified:
/trunk/cocos/audio/__init__.py
=======================================
--- /trunk/cocos/audio/__init__.py Wed Mar 19 14:11:44 2014 UTC
+++ /trunk/cocos/audio/__init__.py Sat Mar 22 11:50:27 2014 UTC
@@ -42,8 +42,8 @@
try:
import cocos.audio.pygame.mixer
except ImportError as error:
- # set to 0 to debug import errors
- if 0:
+ # set to 0 to debug import errors, for release must be 1
+ if 1:
_working = False
else:
raise