haptic: Fix SDL_MouseIsHaptic() always returning SDL_TRUE on Android

This commit is contained in:
Cameron Gutman 2021-11-27 10:18:41 -06:00 committed by GitHub
parent 11a9cd6344
commit f903a39e13
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -155,7 +155,7 @@ SDL_SYS_HapticOpen(SDL_Haptic *haptic)
int
SDL_SYS_HapticMouse(void)
{
return 0;
return -1;
}