Make SDL_SetError and friends unconditionally return -1.
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.
This commit is contained in:
parent
8c6b9f4743
commit
4f438b70a2
106 changed files with 616 additions and 1189 deletions
|
@ -809,12 +809,11 @@ SDL_RegisterApp(char *name, Uint32 style, void *hInst)
|
|||
class.cbWndExtra = 0;
|
||||
class.cbClsExtra = 0;
|
||||
if (!RegisterClass(&class)) {
|
||||
SDL_SetError("Couldn't register application class");
|
||||
return (-1);
|
||||
return SDL_SetError("Couldn't register application class");
|
||||
}
|
||||
|
||||
app_registered = 1;
|
||||
return (0);
|
||||
return 0;
|
||||
}
|
||||
|
||||
/* Unregisters the windowclass registered in SDL_RegisterApp above. */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue