From aa5b026d4a7526f0e72f10170a2ab2583428e258 Mon Sep 17 00:00:00 2001 From: JordanTheToaster Date: Tue, 14 Jan 2025 22:00:43 +0000 Subject: [PATCH] SDLInputSource: Halve default LED brightness --- pcsx2/Input/SDLInputSource.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pcsx2/Input/SDLInputSource.cpp b/pcsx2/Input/SDLInputSource.cpp index 4b8413d2d7..fdaaf2b30a 100644 --- a/pcsx2/Input/SDLInputSource.cpp +++ b/pcsx2/Input/SDLInputSource.cpp @@ -119,10 +119,10 @@ static constexpr const char* s_sdl_hat_direction_names[] = { }; static constexpr const char* s_sdl_default_led_colors[] = { - "0000ff", // SDL-0 - "ff0000", // SDL-1 - "00ff00", // SDL-2 - "ffff00", // SDL-3 + "000080", // SDL-0 + "800000", // SDL-1 + "008000", // SDL-2 + "808000", // SDL-3 }; static void SetControllerRGBLED(SDL_GameController* gc, u32 color)