1
0
Fork 0

Use the new clouds3d-enable property instead.

This commit is contained in:
ehofman 2005-11-13 10:05:58 +00:00
parent 65d24ffbb8
commit 5d07f52389

View 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");