mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2026-06-07 21:09:14 +00:00
[HID] Fixed HD Rumble latency (#104)
Reviewed-on: https://git.ryujinx.app/projects/Ryubing/pulls/104
This commit is contained in:
@@ -20,6 +20,7 @@ namespace Ryujinx.Ava.UI.Models.Input
|
||||
|
||||
public float WeakRumble { get; set; }
|
||||
public float StrongRumble { get; set; }
|
||||
public bool UseHDRumble { get; set; }
|
||||
|
||||
public string Id { get; set; }
|
||||
|
||||
@@ -236,6 +237,7 @@ namespace Ryujinx.Ava.UI.Models.Input
|
||||
EnableRumble = controllerInput.Rumble.EnableRumble;
|
||||
WeakRumble = controllerInput.Rumble.WeakRumble;
|
||||
StrongRumble = controllerInput.Rumble.StrongRumble;
|
||||
UseHDRumble = controllerInput.Rumble.UseHDRumble;
|
||||
}
|
||||
|
||||
if (controllerInput.Led != null)
|
||||
@@ -307,6 +309,7 @@ namespace Ryujinx.Ava.UI.Models.Input
|
||||
EnableRumble = EnableRumble,
|
||||
WeakRumble = WeakRumble,
|
||||
StrongRumble = StrongRumble,
|
||||
UseHDRumble = UseHDRumble,
|
||||
},
|
||||
Led = new LedConfigController
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user