Cleanup of SDL_SetError that already return -1 value

This commit is contained in:
Sylvain 2022-11-18 11:01:21 +01:00 committed by Sam Lantinga
parent 3e70553c48
commit 16824865c2
4 changed files with 7 additions and 14 deletions

View file

@ -92,8 +92,7 @@ SDL_LockMutex(SDL_mutex * mutex)
{
if (mutex == NULL)
{
SDL_SetError("Passed a NULL mutex.");
return -1;
return SDL_SetError("Passed a NULL mutex.");
}
RMutex rmutex;
@ -109,8 +108,7 @@ SDL_UnlockMutex(SDL_mutex * mutex)
{
if ( mutex == NULL )
{
SDL_SetError("Passed a NULL mutex.");
return -1;
return SDL_SetError("Passed a NULL mutex.");
}
RMutex rmutex;