From: curt Date: Mon, 26 Feb 2001 13:58:33 +0000 (+0000) Subject: Fixed a problem with autodetecting if we need to draw our own mouse cursor X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=2c9443c6982ba273b40f4bfc9bdef858639d284b;p=flightgear.git Fixed a problem with autodetecting if we need to draw our own mouse cursor on voodoo-1/2 cards. --- diff --git a/src/Main/options.cxx b/src/Main/options.cxx index 01c0dfbf1..8503dc40e 100644 --- a/src/Main/options.cxx +++ b/src/Main/options.cxx @@ -138,7 +138,9 @@ fgSetDefaults () fgSetBool("/sim/startup/game-mode", false); fgSetBool("/sim/startup/splash-screen", true); fgSetBool("/sim/startup/intro-music", true); - fgSetString("/sim/startup/mouse-pointer", "disabled"); + // we want mouse-pointer to have an undefined value if nothing is + // specified so we can do the right thing for voodoo-1/2 cards. + // fgSetString("/sim/startup/mouse-pointer", "disabled"); fgSetString("/sim/control-mode", "joystick"); fgSetBool("/sim/auto-coordination", false);