mirror of https://github.com/libsdl-org/SDL
pthread: Fixed logic bug in SDL_WaitConditionTimeoutNS due to boolization work.
This commit is contained in:
parent
a24c164956
commit
5dc5b4b83c
|
@ -121,7 +121,7 @@ tryagain:
|
|||
result = false;
|
||||
break;
|
||||
default:
|
||||
result = false;
|
||||
result = true;
|
||||
break;
|
||||
}
|
||||
return result;
|
||||
|
|
Loading…
Reference in New Issue