mirror of
https://github.com/yawut/SDL.git
synced 2026-04-17 14:26:02 -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.
|
||
|---|---|---|
| .. | ||
| SDL_glesfuncs.h | ||
| SDL_render_gles.c | ||