SDL: Fixed the name of the HIDAPI Joy-Con controller for consistency with other drivers

From def60ce6fe53de7250fcb3cb2f301fa93b004434 Mon Sep 17 00:00:00 2001
From: Sam Lantinga <[EMAIL REDACTED]>
Date: Wed, 27 Jul 2022 19:20:42 -0700
Subject: [PATCH] Fixed the name of the HIDAPI Joy-Con controller for
 consistency with other drivers

---
 src/joystick/hidapi/SDL_hidapi_switch.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/joystick/hidapi/SDL_hidapi_switch.c b/src/joystick/hidapi/SDL_hidapi_switch.c
index 97843d8c68f..a2cb87cb0c7 100644
--- a/src/joystick/hidapi/SDL_hidapi_switch.c
+++ b/src/joystick/hidapi/SDL_hidapi_switch.c
@@ -372,7 +372,7 @@ HIDAPI_DriverSwitch_GetDeviceName(const char *name, Uint16 vendor_id, Uint16 pro
         }
 
         if (product_id == USB_PRODUCT_NINTENDO_SWITCH_JOY_CON_LEFT) {
-            return "Nintendo Switch Joy-Con Left";
+            return "Nintendo Switch Joy-Con (L)";
         }
 
         if (product_id == USB_PRODUCT_NINTENDO_SWITCH_JOY_CON_RIGHT) {
@@ -380,7 +380,7 @@ HIDAPI_DriverSwitch_GetDeviceName(const char *name, Uint16 vendor_id, Uint16 pro
             if (SDL_strncmp(name, "NES Controller", 14) == 0) {
                 return name;
             }
-            return "Nintendo Switch Joy-Con Right";
+            return "Nintendo Switch Joy-Con (R)";
         }
 
         if (product_id == USB_PRODUCT_NINTENDO_N64_CONTROLLER) {