Fix refcounting in SDL_hid_exit

This commit is contained in:
Mathieu Eyraud 2021-11-12 10:00:41 +01:00 committed by Sam Lantinga
parent 97c71371f2
commit 5fc7a90a8b
1 changed files with 1 additions and 1 deletions

View File

@ -1084,8 +1084,8 @@ int SDL_hid_exit(void)
if (SDL_hidapi_refcount == 0) {
return 0;
}
--SDL_hidapi_refcount;
if (SDL_hidapi_refcount > 0) {
--SDL_hidapi_refcount;
return 0;
}
SDL_hidapi_refcount = 0;