restore prior formatting

This commit is contained in:
Otozinclus 2025-01-25 23:40:02 +01:00
parent 38a9b0dbdb
commit f9130ffc53

View File

@ -253,6 +253,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(args.NewColor.Value.ToUInt32());
}
@ -261,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());
}
}