rsx/cfg: Lower the default scaling threshold to 16x16

This commit is contained in:
kd-11 2017-12-08 13:13:03 +03:00
parent 7c7cd4153e
commit 71c8885678

View file

@ -341,7 +341,7 @@ struct cfg_root : cfg::node
cfg::_int<1, 8> consequtive_frames_to_skip{this, "Consecutive Frames To Skip", 1};
cfg::_int<50, 800> resolution_scale_percent{this, "Resolution Scale", 100};
cfg::_int<0, 16> anisotropic_level_override{this, "Anisotropic Filter Override", 0};
cfg::_int<1, 1024> min_scalable_dimension{this, "Minimum Scalable Dimension", 128};
cfg::_int<1, 1024> min_scalable_dimension{this, "Minimum Scalable Dimension", 16};
struct node_d3d12 : cfg::node
{