Don't error when fmod isn't installed (same as Darwin does).

This commit is contained in:
Aleric Inglewood
2011-05-17 22:52:35 +02:00
parent 3656939269
commit 4eb87268bd

View File

@@ -212,8 +212,13 @@ class WindowsManifest(ViewerManifest):
# For using FMOD for sound... DJS
if self.prefix(src="../../libraries/i686-win32/lib/release", dst=""):
self.path("fmod.dll")
self.end_prefix()
try:
self.path("fmod.dll")
pass
except:
print "Skipping fmod.dll - not found"
pass
self.end_prefix()
# For textures
#if self.prefix(src="../../libraries/i686-win32/lib/release", dst=""):