From 211763c9551ed0162aca03737f168582df482af6 Mon Sep 17 00:00:00 2001 From: Otozinclus Date: Sat, 25 Jan 2025 23:42:17 +0100 Subject: [PATCH] I had to do this in 2 steps don't ask --- src/Ryujinx/UI/Views/Input/ControllerInputView.axaml.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Ryujinx/UI/Views/Input/ControllerInputView.axaml.cs b/src/Ryujinx/UI/Views/Input/ControllerInputView.axaml.cs index 9ecb08934..99ac3f008 100644 --- a/src/Ryujinx/UI/Views/Input/ControllerInputView.axaml.cs +++ b/src/Ryujinx/UI/Views/Input/ControllerInputView.axaml.cs @@ -262,6 +262,7 @@ namespace Ryujinx.Ava.UI.Views.Input if (DataContext is not ControllerInputViewModel cVm) return; if (!cVm.Config.EnableLedChanging) return; if (cVm.Config.TurnOffLed) return; + cVm.ParentModel.SelectedGamepad.SetLed(cVm.Config.LedColor.ToUInt32()); } }