Add the LED functionality to the base IGamepad interface

This commit is contained in:
Evan Husted
2025-01-23 18:33:52 -06:00
parent 5712e83a11
commit cfe42563f2
6 changed files with 22 additions and 7 deletions

View File

@@ -142,6 +142,8 @@ namespace Ryujinx.Ava.Input
#pragma warning restore IDE0055
}
}
public void SetLed(uint packedRgb) { }
public void SetTriggerThreshold(float triggerThreshold) { }

View File

@@ -73,6 +73,8 @@ namespace Ryujinx.Ava.Input
{
throw new NotImplementedException();
}
public void SetLed(uint packedRgb) { }
public void SetTriggerThreshold(float triggerThreshold)
{