Ver Fonte

Missed out a tiny conditional

rdb há 17 anos atrás
pai
commit
34538489ba

+ 1 - 1
direct/src/extensions_native/extension_native_helpers.py

@@ -33,7 +33,7 @@ def Dtool_PreloadDLL(module):
     windows can't find DLLs - it can only find PYDs.  The
     preloader is able to find DLLs."""
 
-    if (sys.platform != "win32"):
+    if (sys.platform != "win32" and sys.platform != "darwin"):
         return
     if (sys.modules.has_key(module)):
         return