Fixed compiler warning

Sam Lantinga 2019-12-19 15:58:16 -08:00
parent c5024a182d
commit 2481ab9340
1 changed files with 1 additions and 1 deletions

View File

@ -918,7 +918,7 @@ HIDAPI_JoystickGetDeviceGUID(int device_index)
static SDL_JoystickID
HIDAPI_JoystickGetDeviceInstanceID(int device_index)
{
SDL_JoystickID joystickID;
SDL_JoystickID joystickID = -1;
SDL_LockMutex(SDL_HIDAPI_mutex);
HIDAPI_GetDeviceByIndex(device_index, &joystickID);
SDL_UnlockMutex(SDL_HIDAPI_mutex);