]> git.mxchange.org Git - flightgear.git/blobdiff - src/Main/options.cxx
Use the new clouds3d-enable property instead.
[flightgear.git] / 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");