PSP: Fixed error messages.

This commit is contained in:
Philipp Wiesemann
2017-04-02 21:33:54 +02:00
parent f96cdca4e7
commit 1517ba7285
3 changed files with 3 additions and 3 deletions

View File

@@ -108,7 +108,7 @@ int SDL_SemWaitTimeout(SDL_sem *sem, Uint32 timeout)
case SCE_KERNEL_ERROR_WAIT_TIMEOUT:
return SDL_MUTEX_TIMEDOUT;
default:
return SDL_SetError("WaitForSingleObject() failed");
return SDL_SetError("sceKernelWaitSema() failed");
}
}