mirror of
https://github.com/cemu-project/DS4Windows.git
synced 2024-11-23 01:39:17 +01:00
Fix calibration report id for BT
This commit is contained in:
parent
320c3ee6f6
commit
d1e0be33de
@ -450,7 +450,7 @@ namespace DS4Windows
|
||||
sixAxis = new DS4SixAxis();
|
||||
|
||||
byte[] calibration = new byte[41];
|
||||
calibration[0] = conType == ConnectionType.BT ? (byte)0x02 : (byte)0x05;
|
||||
calibration[0] = conType == ConnectionType.BT ? (byte)0x05 : (byte)0x02;
|
||||
hDevice.readFeatureData(calibration);
|
||||
sixAxis.setCalibrationData(ref calibration);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user