Use the new clouds3d-enable property instead.
This commit is contained in:
parent
65d24ffbb8
commit
5d07f52389
1 changed files with 5 additions and 1 deletions
|
@ -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");
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue