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
No known key found for this signature in database
GPG key ID: 5F87E02E5BC0939E

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;