SDL: Removed debug print statements

From 7861f924ea576e212d353512d3c150c1e1f524b4 Mon Sep 17 00:00:00 2001
From: Sam Lantinga <[EMAIL REDACTED]>
Date: Wed, 31 Aug 2022 13:34:43 -0700
Subject: [PATCH] Removed debug print statements

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

diff --git a/src/joystick/hidapi/SDL_hidapi_switch.c b/src/joystick/hidapi/SDL_hidapi_switch.c
index 5c1bea6d3c8..af7ef533547 100644
--- a/src/joystick/hidapi/SDL_hidapi_switch.c
+++ b/src/joystick/hidapi/SDL_hidapi_switch.c
@@ -960,13 +960,11 @@ ReadJoyConControllerType(SDL_HIDAPI_Device *device)
                     break;
                 }
             }
-printf("Attempts: %d\n", attempts);
             SDL_hid_close(device->dev);
             device->dev = NULL;
         }
         SDL_free(ctx);
     }
-printf("Controller type %d\n", eControllerType);
     return eControllerType;
 }