From a70956eaf8bcc7bb2b75814f7091c176e17de90c Mon Sep 17 00:00:00 2001 From: Serge <5920850+seerge@users.noreply.github.com> Date: Mon, 5 Aug 2024 13:04:26 +0200 Subject: [PATCH] Added ROG Ally X Controller ID https://github.com/seerge/g-helper/discussions/2925 --- app/USB/AsusHid.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/USB/AsusHid.cs b/app/USB/AsusHid.cs index 8116865e..af88a756 100644 --- a/app/USB/AsusHid.cs +++ b/app/USB/AsusHid.cs @@ -10,7 +10,7 @@ public static class AsusHid public const byte INPUT_ID = 0x5a; public const byte AURA_ID = 0x5d; - static int[] deviceIds = { 0x1a30, 0x1854, 0x1869, 0x1866, 0x19b6, 0x1822, 0x1837, 0x1854, 0x184a, 0x183d, 0x8502, 0x1807, 0x17e0, 0x18c6, 0x1abe }; + static int[] deviceIds = { 0x1a30, 0x1854, 0x1869, 0x1866, 0x19b6, 0x1822, 0x1837, 0x1854, 0x184a, 0x183d, 0x8502, 0x1807, 0x17e0, 0x18c6, 0x1abe, 0x1b4c }; static HidStream? auraStream;