Output report len is constant

No need to pull from property every poll
This commit is contained in:
Travis Nickles 2019-02-22 01:51:54 -06:00
parent abad91ca2a
commit afea15f38f

View File

@ -100,7 +100,7 @@ namespace DS4Windows
Output[4] = (Byte)(device + firstController);
Output[9] = 0x14;
for (int i = 10, outLen = Output.Length; i < outLen; i++)
for (int i = 10; i < 28; i++)
{
Output[i] = 0;
}