mirror of
https://github.com/GreemDev/Ryujinx.git
synced 2025-12-20 12:34:08 +00:00
fix: add missing implementation
This commit is contained in:
parent
ceaaf4137c
commit
b33fe6facc
2 changed files with 8 additions and 0 deletions
|
|
@ -275,6 +275,10 @@ namespace Ryujinx.Input.SDL2
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public void SetLed(uint packedRgb)
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
public GamepadStateSnapshot GetStateSnapshot()
|
public GamepadStateSnapshot GetStateSnapshot()
|
||||||
{
|
{
|
||||||
return IGamepad.GetStateSnapshot(this);
|
return IGamepad.GetStateSnapshot(this);
|
||||||
|
|
|
||||||
|
|
@ -96,6 +96,10 @@ namespace Ryujinx.Input.SDL2
|
||||||
right.SetConfiguration(configuration);
|
right.SetConfiguration(configuration);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public void SetLed(uint packedRgb)
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
public void SetTriggerThreshold(float triggerThreshold)
|
public void SetTriggerThreshold(float triggerThreshold)
|
||||||
{
|
{
|
||||||
left.SetTriggerThreshold(triggerThreshold);
|
left.SetTriggerThreshold(triggerThreshold);
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue