ps move tracker: set max of radii to 50%

It makes no sense to have a larger radius than half of the image size
This commit is contained in:
Megamouse 2024-12-21 12:12:14 +01:00
parent 1a479e9bda
commit ec7f50d925
3 changed files with 6 additions and 6 deletions

View file

@ -26,8 +26,8 @@ struct cfg_ps_moves final : cfg::node
cfg_ps_move move3{ this, "PS Move 3" };
cfg_ps_move move4{ this, "PS Move 4" };
cfg::_float<0, 100> min_radius{ this, "Minimum Radius", 1.0f, true }; // Percentage of image width
cfg::_float<0, 100> max_radius{ this, "Maximum Radius", 10.0f, true }; // Percentage of image width
cfg::_float<0, 50> min_radius{ this, "Minimum Radius", 1.0f, true }; // Percentage of image width
cfg::_float<0, 50> max_radius{ this, "Maximum Radius", 10.0f, true }; // Percentage of image width
std::array<cfg_ps_move*, 4> move{ &move1, &move2, &move3, &move4 };