From 3c07dd12f08d4af1be77fd50f6c5250ce9d745db Mon Sep 17 00:00:00 2001 From: Sam Lantinga Date: Wed, 25 Nov 2020 10:28:48 -0800 Subject: [PATCH] Strip an extra '.' off of the HORI manufacturer name --- src/joystick/SDL_joystick.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/joystick/SDL_joystick.c b/src/joystick/SDL_joystick.c index 01cf7f40d..1ab7e0b77 100644 --- a/src/joystick/SDL_joystick.c +++ b/src/joystick/SDL_joystick.c @@ -1639,6 +1639,7 @@ SDL_CreateJoystickName(Uint16 vendor, Uint16 product, const char *vendor_name, c } replacements[] = { { "NVIDIA Corporation ", "" }, { "Performance Designed Products", "PDP" }, + { "HORI CO.,LTD.", "HORI" }, { "HORI CO.,LTD", "HORI" }, }; const char *custom_name;