From: ehofman Date: Sat, 12 Nov 2005 14:46:00 +0000 (+0000) Subject: Start the HTML documentation in the default browser on Mac OS X X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=65d24ffbb8f681697424116733e559b4183392ed;p=flightgear.git Start the HTML documentation in the default browser on Mac OS X --- diff --git a/src/Main/options.cxx b/src/Main/options.cxx index 24bac9152..3f519f352 100644 --- a/src/Main/options.cxx +++ b/src/Main/options.cxx @@ -171,10 +171,12 @@ fgSetDefaults () // fgSetString("/sim/startup/mouse-pointer", "disabled"); fgSetString("/sim/control-mode", "joystick"); fgSetBool("/sim/auto-coordination", false); -#if !defined(WIN32) - fgSetString("/sim/startup/browser-app", "netscape"); -#else +#if defined(WIN32) fgSetString("/sim/startup/browser-app", "webrun.bat"); +#elif defined(__APPLE__) + fgSetString("/sim/startup/browser-app", "open"); +#else + fgSetString("/sim/startup/browser-app", "netscape"); #endif fgSetString("/sim/logging/priority", "alert");