From 4e7a22f5891fa60745a28809880fed9d14a26e96 Mon Sep 17 00:00:00 2001 From: James Turner Date: Sun, 27 Oct 2013 13:02:54 +0000 Subject: [PATCH] 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 --- src/Main/options.cxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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); -- 2.39.5