Fixed bug #6698 - VISA: wrong check sceKernelPollSema

This commit is contained in:
Sylvain
2022-11-29 16:14:23 +01:00
parent ee13e8c76b
commit 8cda5102fc

View File

@@ -87,8 +87,8 @@ int SDL_SemWaitTimeout(SDL_sem *sem, Uint32 timeout)
}
if (timeout == 0) {
res = sceKernelPollSema(sem->semid, 1);
if (res < 0) {
int res2 = sceKernelPollSema(sem->semid, 1);
if (res2 < 0) {
return SDL_MUTEX_TIMEDOUT;
}
return 0;