Fixed mouse sensitivity getting throttled when using custom extras

This commit is contained in:
Travis Nickles 2018-03-18 06:42:12 -05:00
parent ace46f1011
commit 3d463ce7e8
2 changed files with 8 additions and 4 deletions

View File

@ -1211,8 +1211,12 @@ namespace DS4Windows
{
DS4LightBar.forcelight[device] = false;
DS4LightBar.forcedFlash[device] = 0;
ButtonMouseSensitivity[device] = oldmouse[device];
oldmouse[device] = -1;
if (oldmouse[device] != -1)
{
ButtonMouseSensitivity[device] = oldmouse[device];
oldmouse[device] = -1;
}
ctrl.setRumble(0, 0, device);
held[device] = false;
usingExtra = DS4Controls.None;

View File

@ -12,6 +12,6 @@ any speed difference will make up for it.
* Remove old welcome dialog and make new driver installer executable.
Use newer standards (WPF) and bundle app with DS4Windows
* ~~Look into changing upgrade routine. Use Launchbox as an example~~
* Find out why default extras entry throttles mouse sensitivity
despite option being disabled
* ~~Find out why default extras entry throttles mouse sensitivity
despite option being disabled~~