diff options
author | Jacek Antonelli | 2008-08-15 23:44:56 -0500 |
---|---|---|
committer | Jacek Antonelli | 2008-08-15 23:44:56 -0500 |
commit | c07901e29ed545bbb02e3bddf148fe1104b94e9f (patch) | |
tree | f1ada64ce834acd7d92a425efb96c4b86bcf16b1 /linden/indra/newview/llstartup.cpp | |
parent | Second Life viewer sources 1.15.0.2 (diff) | |
download | meta-impy-c07901e29ed545bbb02e3bddf148fe1104b94e9f.zip meta-impy-c07901e29ed545bbb02e3bddf148fe1104b94e9f.tar.gz meta-impy-c07901e29ed545bbb02e3bddf148fe1104b94e9f.tar.bz2 meta-impy-c07901e29ed545bbb02e3bddf148fe1104b94e9f.tar.xz |
Second Life viewer sources 1.15.1.3
Diffstat (limited to '')
-rw-r--r-- | linden/indra/newview/llstartup.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/linden/indra/newview/llstartup.cpp b/linden/indra/newview/llstartup.cpp index 585f769..e83aa0d 100644 --- a/linden/indra/newview/llstartup.cpp +++ b/linden/indra/newview/llstartup.cpp | |||
@@ -203,6 +203,7 @@ LLPointer<LLImageGL> gStartImageGL; | |||
203 | static LLHost gAgentSimHost; | 203 | static LLHost gAgentSimHost; |
204 | static BOOL gSkipOptionalUpdate = FALSE; | 204 | static BOOL gSkipOptionalUpdate = FALSE; |
205 | 205 | ||
206 | bool gUseQuickTime = true; | ||
206 | bool gQuickTimeInitialized = false; | 207 | bool gQuickTimeInitialized = false; |
207 | static bool gGotUseCircuitCodeAck = false; | 208 | static bool gGotUseCircuitCodeAck = false; |
208 | LLString gInitialOutfit; | 209 | LLString gInitialOutfit; |
@@ -1867,7 +1868,8 @@ BOOL idle_startup() | |||
1867 | } | 1868 | } |
1868 | 1869 | ||
1869 | #if LL_QUICKTIME_ENABLED // windows only right now but will be ported to mac | 1870 | #if LL_QUICKTIME_ENABLED // windows only right now but will be ported to mac |
1870 | if (!gQuickTimeInitialized) | 1871 | if (gUseQuickTime |
1872 | && !gQuickTimeInitialized) | ||
1871 | { | 1873 | { |
1872 | // initialize quicktime libraries (fails gracefully if quicktime not installed ($QUICKTIME) | 1874 | // initialize quicktime libraries (fails gracefully if quicktime not installed ($QUICKTIME) |
1873 | llinfos << "Initializing QuickTime...." << llendl; | 1875 | llinfos << "Initializing QuickTime...." << llendl; |