This repository has been archived by the owner. It is now read-only.
Permalink
File 52 of 106 in
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
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.
- Loading branch information
File 52 of 106 in
8163efd
Oops, something went wrong.