summaryrefslogtreecommitdiff
path: root/indra/newview/llviewerwindow.cpp
diff options
context:
space:
mode:
authorJosh Bell <josh@lindenlab.com>2007-05-02 20:29:59 +0000
committerJosh Bell <josh@lindenlab.com>2007-05-02 20:29:59 +0000
commitbc59c04653bf1404e8148a8169208b146a123b28 (patch)
tree06407251fd587dd9c3cd1ef907fc1f3c1656fa6e /indra/newview/llviewerwindow.cpp
parenteb3731a3ca0d202809ed20a0f49a7a77ecd4c669 (diff)
svn merge -r 61255:61259 svn+ssh://svn.lindenlab.com/svn/linden/branches/release-candidate --> release
Diffstat (limited to 'indra/newview/llviewerwindow.cpp')
-rw-r--r--indra/newview/llviewerwindow.cpp21
1 files changed, 1 insertions, 20 deletions
diff --git a/indra/newview/llviewerwindow.cpp b/indra/newview/llviewerwindow.cpp
index 1b3c0193f4..f276999380 100644
--- a/indra/newview/llviewerwindow.cpp
+++ b/indra/newview/llviewerwindow.cpp
@@ -1484,27 +1484,8 @@ LLViewerWindow::LLViewerWindow(
// stuff like AGP if we think that it'll crash the viewer.
//
gFeatureManagerp->initGraphicsFeatureMasks();
-
- // The ATI Mobility Radeon with 1.15.0 causes crashes in FMOD on startup for
- // unknown reasons, but only if you have an old settings.ini file.
- // In this case, force the graphics settings back to recommended, but only
- // do it once. JC
- std::string gpu_string = gFeatureManagerp->getGPUString();
- LLString::toLower(gpu_string);
- bool upgrade_to_1_15 = (gSavedSettings.getString("LastRunVersion") != "1.15.0");
- bool mobility_radeon = (gpu_string.find("mobility radeon") != std::string::npos);
- bool mobility_radeon_upgrade_hack = upgrade_to_1_15 && mobility_radeon;
- if (mobility_radeon_upgrade_hack)
- {
- llinfos << "1.15.0 update on Mobility Radeon" << llendl;
- llinfos << "Forcing recommended graphics settings" << llendl;
- llinfos << "Forcing audio off" << llendl;
- gUseAudio = FALSE;
- }
-
if (gFeatureManagerp->isSafe()
- || (gSavedSettings.getS32("LastFeatureVersion") != gFeatureManagerp->getVersion())
- || mobility_radeon_upgrade_hack)
+ || (gSavedSettings.getS32("LastFeatureVersion") != gFeatureManagerp->getVersion()))
{
gFeatureManagerp->applyRecommendedFeatures();
}