mirror of
https://github.com/yawut/SDL.git
synced 2026-04-18 14:47:27 -05:00
Mac: Fix error message for haptic subsystem.
We were calling SDL_Error instead of SDL_SetError when the haptic subsystem wasn't initialized.
This commit is contained in:
parent
50c4b640c0
commit
2ccfd3e029
|
|
@ -156,7 +156,7 @@ SDL_SYS_HapticInit(void)
|
|||
io_service_t device;
|
||||
|
||||
if (numhaptics != -1) {
|
||||
return SDL_Error("Haptic subsystem already initialized!");
|
||||
return SDL_SetError("Haptic subsystem already initialized!");
|
||||
}
|
||||
numhaptics = 0;
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user