Whole bunch of crash fixes and compiler junk.

This commit is contained in:
CharleyLevenque
2010-08-29 00:40:22 -04:00
parent 5fc9867f8b
commit ae4dcc283c
5 changed files with 502 additions and 498 deletions

View File

@@ -163,13 +163,13 @@ class WindowsManifest(ViewerManifest):
def final_exe(self):
if self.default_channel() and self.viewer_branding_id()=="secondlife":
if self.default_grid():
return "SecondLife.exe"
return "Ascent.exe"
else:
return "SecondLifePreview.exe"
return "Ascent.exe"
elif(self.viewer_branding_id=="snowglobe"):
return "Snowglobe.exe"
return "Ascent.exe"
else:
return ''.join(self.channel().split()) + '.exe'
return 'Ascent.exe'
def construct(self):