pthread: Fixed logic bug in SDL_WaitConditionTimeoutNS due to boolization work.
This commit is contained in:
parent
a24c164956
commit
5dc5b4b83c
1 changed files with 1 additions and 1 deletions
|
@ -121,7 +121,7 @@ tryagain:
|
||||||
result = false;
|
result = false;
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
result = false;
|
result = true;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
return result;
|
return result;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue