From 8dafc8e542b5e22ee9602dff1141fe797edadc12 Mon Sep 17 00:00:00 2001 From: kd-11 Date: Fri, 14 Jun 2019 16:27:23 +0300 Subject: [PATCH] cfg: Default MSAA level to auto --- rpcs3/Emu/System.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rpcs3/Emu/System.h b/rpcs3/Emu/System.h index a0933775ba..a6c939b1c8 100644 --- a/rpcs3/Emu/System.h +++ b/rpcs3/Emu/System.h @@ -436,7 +436,7 @@ struct cfg_root : cfg::node cfg::_enum resolution{this, "Resolution", video_resolution::_720}; cfg::_enum aspect_ratio{this, "Aspect ratio", video_aspect::_16_9}; cfg::_enum frame_limit{this, "Frame limit", frame_limit_type::none}; - cfg::_enum antialiasing_level{this, "MSAA", msaa_level::none}; + cfg::_enum 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"};