mirror of
https://github.com/cemu-project/DS4Windows.git
synced 2024-12-23 23:21:49 +01:00
Minor tweak
This commit is contained in:
parent
c228b4348c
commit
895539c787
@ -752,13 +752,9 @@ namespace DS4Windows
|
||||
//Array.Copy(btInputReport, 2, inputReport, 0, inputReport.Length);
|
||||
fixed (byte* byteP = &btInputReport[2], imp = inputReport)
|
||||
{
|
||||
byte* btImp = byteP;
|
||||
byte* finImp = imp;
|
||||
for (int j = 0; j < BT_INPUT_REPORT_LENGTH-2;j++)
|
||||
{
|
||||
finImp[j] = btImp[j];
|
||||
//*finImp = *btImp;
|
||||
//btImp++; finImp++;
|
||||
imp[j] = byteP[j];
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user