From 740e35872db4abc398640272041e1827a6a24000 Mon Sep 17 00:00:00 2001 From: mika Date: Thu, 23 Jan 2025 03:40:45 +0100 Subject: [PATCH] test --- src/Ryujinx.Input.SDL2/SDL2Gamepad.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Ryujinx.Input.SDL2/SDL2Gamepad.cs b/src/Ryujinx.Input.SDL2/SDL2Gamepad.cs index 039567228..7cd3d4b4b 100644 --- a/src/Ryujinx.Input.SDL2/SDL2Gamepad.cs +++ b/src/Ryujinx.Input.SDL2/SDL2Gamepad.cs @@ -110,7 +110,7 @@ namespace Ryujinx.Input.SDL2 public void SetLedColor() { //IAMTOOTIREDWILLCONTINUETOMORROWSORRY - uint rawColor = 100; + uint rawColor = 111; byte red = (byte)(rawColor >> 16); byte green = (byte)(rawColor >> 8); byte blue = (byte)(rawColor % 256);