SDL: Fix MSVC syntax error

From a472f5ea1e0dce1c924c34a32cc1277c28d04173 Mon Sep 17 00:00:00 2001
From: Anonymous Maarten <[EMAIL REDACTED]>
Date: Mon, 13 Oct 2025 01:19:17 +0200
Subject: [PATCH] Fix MSVC syntax error

Fixes the following error:
`
error C2059: syntax error: '}'
`
---
 src/joystick/hidapi/SDL_hidapi_switch2.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/joystick/hidapi/SDL_hidapi_switch2.c b/src/joystick/hidapi/SDL_hidapi_switch2.c
index d3e75042af044..8b40a0188df2a 100644
--- a/src/joystick/hidapi/SDL_hidapi_switch2.c
+++ b/src/joystick/hidapi/SDL_hidapi_switch2.c
@@ -960,7 +960,7 @@ static bool UpdateRumble(SDL_DriverSwitch2_Context *ctx)
         return false;
     }
 
-    unsigned char rumble_data[64] = {};
+    unsigned char rumble_data[64] = {0};
     if (ctx->device->product_id == USB_PRODUCT_NINTENDO_SWITCH2_GAMECUBE_CONTROLLER) {
         Uint16 rumble_max = SDL_max(ctx->rumble_lo_amp, ctx->rumble_hi_amp);
         rumble_data[0x00] = 0x3;