[HID] Fixed HD Rumble latency

This commit is contained in:
Max
2026-09-10 23:45:46 -05:00
committed by KeatonTheBot
parent a7a3a17b48
commit ec6ce46357
19 changed files with 220 additions and 62 deletions
@@ -23,5 +23,16 @@ namespace Ryujinx.Ava.UI.ViewModels.Input
OnPropertyChanged();
}
}
private bool _enableHDRumble;
public bool EnableHDRumble
{
get => _enableHDRumble;
set
{
_enableHDRumble = value;
OnPropertyChanged();
}
}
}
}