mirror of
https://github.com/cemu-project/DS4Windows.git
synced 2025-02-08 20:53:22 +01:00
Improve response time when using USB and Sony dongle
This commit is contained in:
parent
b62b490ff1
commit
ea69d69a6f
@ -1008,7 +1008,9 @@ namespace DS4Windows
|
|||||||
else
|
else
|
||||||
{
|
{
|
||||||
outputReportBuffer[0] = 0x05;
|
outputReportBuffer[0] = 0x05;
|
||||||
outputReportBuffer[1] = 0xff;
|
// enable lightbar and rumble. input rate
|
||||||
|
outputReportBuffer[1] = (conType == ConnectionType.USB) ?
|
||||||
|
(byte)0x03 : (byte)(0x03 | (btPollRate << 4));
|
||||||
outputReportBuffer[4] = rightLightFastRumble; // fast motor
|
outputReportBuffer[4] = rightLightFastRumble; // fast motor
|
||||||
outputReportBuffer[5] = leftHeavySlowRumble; // slow motor
|
outputReportBuffer[5] = leftHeavySlowRumble; // slow motor
|
||||||
outputReportBuffer[6] = LightBarColor.red; // red
|
outputReportBuffer[6] = LightBarColor.red; // red
|
||||||
@ -1019,7 +1021,8 @@ namespace DS4Windows
|
|||||||
if (conType == ConnectionType.SONYWA)
|
if (conType == ConnectionType.SONYWA)
|
||||||
{
|
{
|
||||||
// Headphone volume levels
|
// Headphone volume levels
|
||||||
outputReportBuffer[19] = outputReportBuffer[20] = Convert.ToByte(audio.getVolume());
|
outputReportBuffer[19] = outputReportBuffer[20] =
|
||||||
|
Convert.ToByte(audio.getVolume());
|
||||||
// Microphone volume level
|
// Microphone volume level
|
||||||
outputReportBuffer[21] = Convert.ToByte(micAudio.getVolume());
|
outputReportBuffer[21] = Convert.ToByte(micAudio.getVolume());
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user