mirror of
https://github.com/cemu-project/DS4Windows.git
synced 2024-11-26 11:04:21 +01:00
Restart pending output report count when a change is detected
This commit is contained in:
parent
9045d18092
commit
a894179c98
@ -1082,13 +1082,13 @@ namespace DS4Windows
|
||||
}
|
||||
else
|
||||
{
|
||||
bool output = outputPendCount > 0;
|
||||
for (int i = 0, arlen = outputReport.Length; !output && i < arlen; i++)
|
||||
output = outputReport[i] != outputReportBuffer[i];
|
||||
bool output = outputPendCount > 0, change = false;
|
||||
for (int i = 0, arlen = outputReport.Length; !change && i < arlen; i++)
|
||||
change = outputReport[i] != outputReportBuffer[i];
|
||||
|
||||
if (output)
|
||||
if (output || change)
|
||||
{
|
||||
if (outputPendCount == 0)
|
||||
if (outputPendCount == 0 || change)
|
||||
outputPendCount = 3;
|
||||
|
||||
outputRumble = true;
|
||||
|
Loading…
Reference in New Issue
Block a user