Commit 33a3726a authored by Nell Hardcastle's avatar Nell Hardcastle Committed by Alexandre Julliard

winebus.sys: Identify DualSense Edge as a DualSense controller.

The DualSense Edge implements extra features (haptics and adaptive triggers) in the same way as the DualSense.
parent 466c9700
......@@ -72,7 +72,9 @@ BOOL is_dualshock4_gamepad(WORD vid, WORD pid)
BOOL is_dualsense_gamepad(WORD vid, WORD pid)
{
if (vid == 0x054c && pid == 0x0ce6) return TRUE;
if (vid != 0x054c) return FALSE;
if (pid == 0x0ce6) return TRUE; /* DualSense */
if (pid == 0x0df2) return TRUE; /* DualSense Edge */
return FALSE;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment