mirror of
https://git.ryujinx.app/projects/Kenji-NX.git
synced 2026-09-24 09:30:06 +02:00
[HID] Fixed HD Rumble latency
This commit is contained in:
@@ -685,6 +685,7 @@ namespace Ryujinx.Ava.UI.ViewModels.Input
|
||||
StrongRumble = 1f,
|
||||
WeakRumble = 1f,
|
||||
EnableRumble = false,
|
||||
UseHDRumble = true
|
||||
},
|
||||
};
|
||||
}
|
||||
|
||||
@@ -23,5 +23,16 @@ namespace Ryujinx.Ava.UI.ViewModels.Input
|
||||
OnPropertyChanged();
|
||||
}
|
||||
}
|
||||
|
||||
private bool _enableHDRumble;
|
||||
public bool EnableHDRumble
|
||||
{
|
||||
get => _enableHDRumble;
|
||||
set
|
||||
{
|
||||
_enableHDRumble = value;
|
||||
OnPropertyChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user