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;

View File

@@ -119,8 +119,7 @@ SDL_SemWaitTimeout(SDL_sem * sem, Uint32 timeout)
{
if (! sem)
{
SDL_SetError("Passed a NULL sem");
return -1;
return SDL_SetError("Passed a NULL sem");
}
if (timeout == SDL_MUTEX_MAXWAIT)
@@ -182,8 +181,7 @@ SDL_SemPost(SDL_sem * sem)
{
if (! sem)
{
SDL_SetError("Passed a NULL sem.");
return -1;
return SDL_SetError("Passed a NULL sem.");
}
sem->count++;
RSemaphore sema;