mirror of
https://github.com/yawut/SDL.git
synced 2026-06-17 05:59:25 -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.
|
||
|---|---|---|
| .. | ||
| beos | ||
| generic | ||
| psp | ||
| pthread | ||
| windows | ||
| SDL_systhread.h | ||
| SDL_thread_c.h | ||
| SDL_thread.c | ||