From 6ad0fb8462c0865a5c541ee96c678cf343f68488 Mon Sep 17 00:00:00 2001 From: Ozkan Sezer Date: Sat, 13 Nov 2021 17:55:10 +0300 Subject: [PATCH] SDL_hidapi_ps4.c, SDL_hidapi_ps5.c: use SDL_zeroa() --- src/joystick/hidapi/SDL_hidapi_ps4.c | 4 ++-- src/joystick/hidapi/SDL_hidapi_ps5.c | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/joystick/hidapi/SDL_hidapi_ps4.c b/src/joystick/hidapi/SDL_hidapi_ps4.c index b6df375c8..f0f70d80c 100644 --- a/src/joystick/hidapi/SDL_hidapi_ps4.c +++ b/src/joystick/hidapi/SDL_hidapi_ps4.c @@ -415,7 +415,7 @@ HIDAPI_DriverPS4_TickleBluetooth(SDL_HIDAPI_Device *device) /* This is just a dummy packet that should have no effect, since we don't set the CRC */ Uint8 data[78]; - SDL_zero(data); + SDL_zeroa(data); data[0] = k_EPS4ReportIdBluetoothEffects; data[1] = 0xC0; /* Magic value HID + CRC */ @@ -639,7 +639,7 @@ HIDAPI_DriverPS4_SendJoystickEffect(SDL_HIDAPI_Device *device, SDL_Joystick *joy HIDAPI_DriverPS4_SetEnhancedMode(device, joystick); } - SDL_zero(data); + SDL_zeroa(data); if (ctx->is_bluetooth) { data[0] = k_EPS4ReportIdBluetoothEffects; diff --git a/src/joystick/hidapi/SDL_hidapi_ps5.c b/src/joystick/hidapi/SDL_hidapi_ps5.c index c52c6df89..5ba404775 100644 --- a/src/joystick/hidapi/SDL_hidapi_ps5.c +++ b/src/joystick/hidapi/SDL_hidapi_ps5.c @@ -471,7 +471,7 @@ HIDAPI_DriverPS5_TickleBluetooth(SDL_HIDAPI_Device *device) /* This is just a dummy packet that should have no effect, since we don't set the CRC */ Uint8 data[78]; - SDL_zero(data); + SDL_zeroa(data); data[0] = k_EPS5ReportIdBluetoothEffects; data[1] = 0x02; /* Magic value */ @@ -703,7 +703,7 @@ HIDAPI_DriverPS5_SendJoystickEffect(SDL_HIDAPI_Device *device, SDL_Joystick *joy HIDAPI_DriverPS5_SetEnhancedMode(device, joystick); } - SDL_zero(data); + SDL_zeroa(data); if (ctx->is_bluetooth) { data[0] = k_EPS5ReportIdBluetoothEffects;