mirror of
https://github.com/cemu-project/DS4Windows.git
synced 2024-11-22 09:19:18 +01:00
Removed type conversion for new max output properties where not needed
This commit is contained in:
parent
3353b4afcd
commit
208be8aa22
@ -686,13 +686,13 @@ namespace DS4WinWPF.DS4Forms.ViewModels
|
||||
public double LSMaxOutput
|
||||
{
|
||||
get => Global.LSModInfo[device].maxOutput / 100.0;
|
||||
set => Global.LSModInfo[device].maxOutput = (int)(value * 100.0);
|
||||
set => Global.LSModInfo[device].maxOutput = value * 100.0;
|
||||
}
|
||||
|
||||
public double RSMaxOutput
|
||||
{
|
||||
get => Global.RSModInfo[device].maxOutput / 100.0;
|
||||
set => Global.RSModInfo[device].maxOutput = (int)(value * 100.0);
|
||||
set => Global.RSModInfo[device].maxOutput = value * 100.0;
|
||||
}
|
||||
|
||||
public double LSSens
|
||||
|
Loading…
Reference in New Issue
Block a user