mirror of
https://github.com/cemu-project/DS4Windows.git
synced 2024-11-23 09:49:16 +01:00
Fix issue with USB sending constant output reports. Only copy relevant output bytes for BT.
Related to issue #290.
This commit is contained in:
parent
f5ce078488
commit
d3fafbb32a
@ -640,7 +640,7 @@ namespace DS4Windows
|
|||||||
Monitor.Wait(outReportBuffer);
|
Monitor.Wait(outReportBuffer);
|
||||||
fixed (byte* byteR = outputReport, byteB = outReportBuffer)
|
fixed (byte* byteR = outputReport, byteB = outReportBuffer)
|
||||||
{
|
{
|
||||||
for (int i = 0, arlen = outputReport.Length; i < arlen; i++)
|
for (int i = 0, arlen = 13; i < arlen; i++)
|
||||||
byteR[i] = byteB[i];
|
byteR[i] = byteB[i];
|
||||||
}
|
}
|
||||||
//outReportBuffer.CopyTo(outputReport, 0);
|
//outReportBuffer.CopyTo(outputReport, 0);
|
||||||
@ -1166,9 +1166,10 @@ namespace DS4Windows
|
|||||||
if (usingBT)
|
if (usingBT)
|
||||||
{
|
{
|
||||||
Monitor.Enter(outputReport);
|
Monitor.Enter(outputReport);
|
||||||
outReportBuffer.CopyTo(outputReport, 0);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
outReportBuffer.CopyTo(outputReport, 0);
|
||||||
|
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
if (!writeOutput())
|
if (!writeOutput())
|
||||||
|
Loading…
Reference in New Issue
Block a user