فهرست منبع

don't unload sounds if they are None

Cary Sandvig 25 سال پیش
والد
کامیت
242ac509e5
1فایلهای تغییر یافته به همراه3 افزوده شده و 2 حذف شده
  1. 3 2
      direct/src/showbase/Loader.py

+ 3 - 2
direct/src/showbase/Loader.py

@@ -106,8 +106,9 @@ class Loader:
     def unloadSound(self, sound):
     def unloadSound(self, sound):
 	"""unloadSound(self, sound)
 	"""unloadSound(self, sound)
 	"""
 	"""
-        Loader.notify.info("Unloading sound: %s" % (sound) )
-	AudioPool.releaseSound(sound)
+        if sound:
+            Loader.notify.info("Unloading sound: %s" % (sound) )
+            AudioPool.releaseSound(sound)