Adds support for Gladius III Wireless (P706_Wireless). Renamed the other Gladius III (Wireless Aimpoint) to differentiate them. Fixes a crashbug that can occurs when opening the

This commit is contained in:
IceStormNG
2023-07-31 18:21:28 +02:00
parent 4f2fdc55ee
commit 8f59ff5e3d
4 changed files with 109 additions and 16 deletions

View File

@@ -1,5 +1,6 @@
namespace GHelper.Peripherals.Mouse.Models
{
//P711
public class GladiusIIIAimpoint : AsusMouse
{
public GladiusIIIAimpoint() : base(0x0B05, 0x1A70, "mi_00", true)
@@ -17,7 +18,7 @@
public override string GetDisplayName()
{
return "ROG Gladius III (Wireless)";
return "ROG Gladius III Aimpoint (Wireless)";
}
@@ -99,7 +100,7 @@
public override string GetDisplayName()
{
return "ROG Gladius III (Wired)";
return "ROG Gladius III Aimpoint (Wired)";
}
}
}