cfg: Default MSAA level to auto

This commit is contained in:
kd-11 2019-06-14 16:27:23 +03:00 committed by kd-11
parent e515d9b83a
commit 8dafc8e542
1 changed files with 1 additions and 1 deletions

View File

@ -436,7 +436,7 @@ struct cfg_root : cfg::node
cfg::_enum<video_resolution> resolution{this, "Resolution", video_resolution::_720};
cfg::_enum<video_aspect> aspect_ratio{this, "Aspect ratio", video_aspect::_16_9};
cfg::_enum<frame_limit_type> frame_limit{this, "Frame limit", frame_limit_type::none};
cfg::_enum<msaa_level> antialiasing_level{this, "MSAA", msaa_level::none};
cfg::_enum<msaa_level> antialiasing_level{this, "MSAA", msaa_level::_auto};
cfg::_bool write_color_buffers{this, "Write Color Buffers"};
cfg::_bool write_depth_buffer{this, "Write Depth Buffer"};