diff options
author | Leyla Farazha <leyla@lindenlab.com> | 2010-10-15 13:36:10 -0700 |
---|---|---|
committer | Leyla Farazha <leyla@lindenlab.com> | 2010-10-15 13:36:10 -0700 |
commit | 6fc3de7b2d091136d32f2a4d4d9c4e34edf29704 (patch) | |
tree | 6afb86ca617940efd991c3a25908685c493875cc /indra/newview/viewer_manifest.py | |
parent | b0fd7bf7ea85ad9f0249a887e7a592e01c6eabb7 (diff) | |
parent | 8158c5637a9ad83a7b36b104116c37390b57c7ab (diff) |
Merge
Diffstat (limited to 'indra/newview/viewer_manifest.py')
-rw-r--r-- | indra/newview/viewer_manifest.py | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/indra/newview/viewer_manifest.py b/indra/newview/viewer_manifest.py index 648366fa4c..6861f02bfb 100644 --- a/indra/newview/viewer_manifest.py +++ b/indra/newview/viewer_manifest.py @@ -271,6 +271,12 @@ class WindowsManifest(ViewerManifest): self.disable_manifest_check() + # Get fmod dll, continue if missing + try: + self.path("fmod.dll") + except: + print "Skipping fmod.dll" + # For textures if self.args['configuration'].lower() == 'debug': self.path("openjpegd.dll") @@ -315,12 +321,6 @@ class WindowsManifest(ViewerManifest): # For use in crash reporting (generates minidumps) self.path("dbghelp.dll") - try: - # FMOD for sound - self.path("fmod.dll") - except: - print "Skipping FMOD - not found" - self.enable_no_crt_manifest_check() # Media plugins - QuickTime |