SDLInputSource: Halve default LED brightness

This commit is contained in:
JordanTheToaster 2025-01-14 22:00:43 +00:00 committed by lightningterror
parent 9568f3305b
commit aa5b026d4a
1 changed files with 4 additions and 4 deletions

View File

@ -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)