]> git.mxchange.org Git - flightgear.git/commitdiff
Use the new clouds3d-enable property instead.
authorehofman <ehofman>
Sun, 13 Nov 2005 10:05:58 +0000 (10:05 +0000)
committerehofman <ehofman>
Sun, 13 Nov 2005 10:05:58 +0000 (10:05 +0000)
src/Main/options.cxx

index 3f519f35287325024a904a30fd8568fc2bde22f3..c7aab9619c85a4f994d60a506c9407e5b924c7ef 100644 (file)
@@ -175,8 +175,12 @@ fgSetDefaults ()
     fgSetString("/sim/startup/browser-app", "webrun.bat");
 #elif defined(__APPLE__)
     fgSetString("/sim/startup/browser-app", "open");
+#elif defined(sgi)
+    fgSetString("/sim/startup/browser-app", "launchWebJumper");
 #else
-    fgSetString("/sim/startup/browser-app", "netscape");
+    char *envp = ::getenv( "WEBBROWSER" );
+    if (!envp) envp = "netscape";
+    fgSetString("/sim/startup/browser-app", envp);
 #endif
     fgSetString("/sim/logging/priority", "alert");