mirror of
https://github.com/cemu-project/DS4Windows.git
synced 2024-11-29 20:44:20 +01:00
Merge branch 'ryochan' of https://github.com/Yuki-nyan/DS4Windows into Yuki-nyan-ryochan
This commit is contained in:
commit
849a46da65
@ -30,11 +30,13 @@ namespace DS4Windows
|
|||||||
public static bool isExclusiveMode = false;
|
public static bool isExclusiveMode = false;
|
||||||
internal const int SONY_VID = 0x054C;
|
internal const int SONY_VID = 0x054C;
|
||||||
internal const int RAZER_VID = 0x1532;
|
internal const int RAZER_VID = 0x1532;
|
||||||
|
internal const int NACON_VID = 0x146B;
|
||||||
|
|
||||||
private static VidPidInfo[] knownDevices =
|
private static VidPidInfo[] knownDevices =
|
||||||
{
|
{
|
||||||
new VidPidInfo(SONY_VID, 0xBA0), new VidPidInfo(SONY_VID, 0x5C4),
|
new VidPidInfo(SONY_VID, 0xBA0), new VidPidInfo(SONY_VID, 0x5C4),
|
||||||
new VidPidInfo(SONY_VID, 0x09CC), new VidPidInfo(RAZER_VID, 0x1000)
|
new VidPidInfo(SONY_VID, 0x09CC), new VidPidInfo(RAZER_VID, 0x1000),
|
||||||
|
new VidPidInfo(NACON_VID, 0x0D01)
|
||||||
};
|
};
|
||||||
|
|
||||||
private static string devicePathToInstanceId(string devicePath)
|
private static string devicePathToInstanceId(string devicePath)
|
||||||
@ -71,7 +73,9 @@ namespace DS4Windows
|
|||||||
//foreach (HidDevice hDevice in hDevices)
|
//foreach (HidDevice hDevice in hDevices)
|
||||||
{
|
{
|
||||||
HidDevice hDevice = tempList[i];
|
HidDevice hDevice = tempList[i];
|
||||||
if (DevicePaths.Contains(hDevice.DevicePath))
|
if (hDevice.Description == "HID-compliant vendor-defined device")
|
||||||
|
continue; // ignore the Nacon Revolution Pro programming interface
|
||||||
|
else if (DevicePaths.Contains(hDevice.DevicePath))
|
||||||
continue; // BT/USB endpoint already open once
|
continue; // BT/USB endpoint already open once
|
||||||
|
|
||||||
if (!hDevice.IsOpen)
|
if (!hDevice.IsOpen)
|
||||||
|
Loading…
Reference in New Issue
Block a user