Add option to change controller LED color #572

Merged
Otozinclus merged 33 commits from Change-Controller-LED-Color into master 2025-01-24 20:47:36 +00:00
Showing only changes of commit 97dfeae99f - Show all commits

View File

@ -110,7 +110,7 @@ namespace Ryujinx.Input.SDL2
public void SetLedColor()
{
//IAMTOOTIREDWILLCONTINUETOMORROWSORRY
uint rawColor = 111;
uint rawColor = 110;
byte red = (byte)(rawColor >> 16);
byte green = (byte)(rawColor >> 8);
byte blue = (byte)(rawColor % 256);