pthread: Fixed logic bug in SDL_WaitConditionTimeoutNS due to boolization work.

This commit is contained in:
Ryan C. Gordon 2024-08-27 17:00:47 -04:00
parent a24c164956
commit 5dc5b4b83c
No known key found for this signature in database
GPG Key ID: FA148B892AB48044
1 changed files with 1 additions and 1 deletions

View File

@ -121,7 +121,7 @@ tryagain:
result = false;
break;
default:
result = false;
result = true;
break;
}
return result;