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
This commit is contained in:
parent
c72ac27098
commit
4e7a22f589
1 changed files with 3 additions and 3 deletions
|
@ -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);
|
||||
|
||||
|
|
Loading…
Reference in a new issue