mirror of
https://github.com/GreemDev/Ryujinx.git
synced 2025-08-30 07:25:05 +00:00
added function to handle gamepad led while in settings; added rainbow color handling in the new function.
This commit is contained in:
parent
fd9bce0f6b
commit
38ecb3d5bc
2 changed files with 22 additions and 14 deletions
|
|
@ -19,7 +19,6 @@ using Ryujinx.Common.Logging;
|
|||
using Ryujinx.Common.SystemInterop;
|
||||
using Ryujinx.Graphics.Vulkan.MoltenVK;
|
||||
using Ryujinx.Headless;
|
||||
using Ryujinx.Input.SDL2;
|
||||
using Ryujinx.SDL2.Common;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
|
|
|||
|
|
@ -379,6 +379,12 @@ namespace Ryujinx.Ava.UI.ViewModels.Input
|
|||
LoadDevice();
|
||||
_isLoaded = true;
|
||||
|
||||
UpdateGamepadLed();
|
||||
});
|
||||
}
|
||||
|
||||
private void UpdateGamepadLed()
|
||||
{
|
||||
if (ConfigViewModel is not ControllerInputViewModel controllerInputViewModel) return;
|
||||
GamepadInputConfig inputConfig = controllerInputViewModel.Config;
|
||||
|
||||
|
|
@ -388,11 +394,14 @@ namespace Ryujinx.Ava.UI.ViewModels.Input
|
|||
{
|
||||
SelectedGamepad.ClearLed();
|
||||
}
|
||||
else if(inputConfig.UseRainbowLed)
|
||||
{
|
||||
SelectedGamepad.SetLed((uint)Rainbow.Color.ToArgb());
|
||||
}
|
||||
else
|
||||
{
|
||||
SelectedGamepad.SetLed(inputConfig.LedColor.ToUInt32());
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
private string GetCurrentGamepadId()
|
||||
|
|
|
|||
Loading…
Reference in a new issue