mirror of
https://github.com/yawut/SDL.git
synced 2026-03-29 05:04:33 -05:00
This lets us change things like this...
if (Failed) {
SDL_SetError("We failed");
return -1;
}
...into this...
if (Failed) {
return SDL_SetError("We failed");
}
Fixes Bugzilla #1778.
|
||
|---|---|---|
| .. | ||
| darwin | ||
| dummy | ||
| linux | ||
| windows | ||
| SDL_haptic_c.h | ||
| SDL_haptic.c | ||
| SDL_syshaptic.h | ||