edited NpadManager to better support auto-assign; updated initialization methods; changed some settings for LED color

This commit is contained in:
uncavo-hdmi
2025-02-09 18:10:32 +01:00
parent 5b88a2dd89
commit 62dfbb5dcb
6 changed files with 20 additions and 8 deletions

View File

@@ -127,7 +127,7 @@ namespace Ryujinx.Ava.Input
if (config is StandardControllerInputConfig standardConfig)
{
Logger.Warning?.Print(LogClass.Application, $"Setting color for Player{index+1}");
standardConfig.Led.LedColor = _playerColors[index];
standardConfig.Led = new LedConfigController { EnableLed = true, LedColor = _playerColors[index] };
}
index++;
}