aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden
diff options
context:
space:
mode:
authorMcCabe Maxsted2010-10-18 15:55:50 -0700
committerMcCabe Maxsted2010-10-18 15:55:50 -0700
commitcea604cda04d783b989498055102674170864b5c (patch)
treeeaeac5d55b4203db9c4d49ede4094421e82b77d2 /linden
parentChanged version to Experimental 2010.10.17 (diff)
downloadmeta-impy-cea604cda04d783b989498055102674170864b5c.zip
meta-impy-cea604cda04d783b989498055102674170864b5c.tar.gz
meta-impy-cea604cda04d783b989498055102674170864b5c.tar.bz2
meta-impy-cea604cda04d783b989498055102674170864b5c.tar.xz
Fixed the Vivox license prompt appearing when connecting to non-SL grids on startup
Diffstat (limited to '')
-rw-r--r--linden/indra/newview/llstartup.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/linden/indra/newview/llstartup.cpp b/linden/indra/newview/llstartup.cpp
index 08d6d3f..d5adc11 100644
--- a/linden/indra/newview/llstartup.cpp
+++ b/linden/indra/newview/llstartup.cpp
@@ -1073,10 +1073,11 @@ bool idle_startup()
1073 // color init must be after saved settings loaded 1073 // color init must be after saved settings loaded
1074 init_colors(); 1074 init_colors();
1075 1075
1076 if (gSavedSettings.getBOOL("VivoxLicenseAccepted")) 1076 if (gSavedSettings.getBOOL("VivoxLicenseAccepted") || gHippoGridManager->getConnectedGrid()->isSecondLife())
1077 { 1077 {
1078 // skipping over STATE_LOGIN_VOICE_LICENSE since we don't need it 1078 // skipping over STATE_LOGIN_VOICE_LICENSE since we don't need it
1079 // skipping over STATE_UPDATE_CHECK because that just waits for input 1079 // skipping over STATE_UPDATE_CHECK because that just waits for input
1080 // We don't do this on non-SL grids either
1080 LLStartUp::setStartupState( STATE_LOGIN_AUTH_INIT ); 1081 LLStartUp::setStartupState( STATE_LOGIN_AUTH_INIT );
1081 } 1082 }
1082 else 1083 else