Cleanup: use bool instead of int

This commit is contained in:
Jacques Lucke 2021-04-01 15:45:07 +02:00
parent 6be964e267
commit 7a757662bc
1 changed files with 1 additions and 1 deletions

View File

@ -304,7 +304,7 @@ bNodeThreadStack *ntreeGetThreadStack(bNodeTreeExec *exec, int thread)
void ntreeReleaseThreadStack(bNodeThreadStack *nts)
{
nts->used = 0;
nts->used = false;
}
bool ntreeExecThreadNodes(bNodeTreeExec *exec, bNodeThreadStack *nts, void *callerdata, int thread)