mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-04-04 22:19:02 +00:00
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:
parent
1a479e9bda
commit
ec7f50d925
3 changed files with 6 additions and 6 deletions
|
|
@ -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 };
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue