From: James Turner Date: Sun, 27 Oct 2013 13:02:54 +0000 (+0000) Subject: Default to 32-bit color buffers. X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=4e7a22f5891fa60745a28809880fed9d14a26e96;p=flightgear.git Default to 32-bit color buffers. Requesting 16-bit is probably doing more harm than good on modern hardware. Command line switch to change works as before. Also update the default window size, although this is actually set by preferences.xml --- diff --git a/src/Main/options.cxx b/src/Main/options.cxx index 9914e9e5a..036d3146a 100644 --- a/src/Main/options.cxx +++ b/src/Main/options.cxx @@ -198,9 +198,9 @@ fgSetDefaults () fgSetBool("/sim/rendering/distance-attenuation", false); fgSetBool("/sim/rendering/specular-highlight", true); fgSetString("/sim/rendering/materials-file", "materials.xml"); - fgSetInt("/sim/startup/xsize", 800); - fgSetInt("/sim/startup/ysize", 600); - fgSetInt("/sim/rendering/bits-per-pixel", 16); + fgSetInt("/sim/startup/xsize", 1024); + fgSetInt("/sim/startup/ysize", 768); + fgSetInt("/sim/rendering/bits-per-pixel", 32); fgSetString("/sim/view-mode", "pilot"); fgSetDouble("/sim/current-view/heading-offset-deg", 0);