Cleanup: use bool instead of short for job stop & do_update arguments

Since these values are only ever 0/1, use bool type.
This commit is contained in:
2022-11-04 18:37:25 +11:00
parent 4a313b8252
commit ae3073323e
52 changed files with 207 additions and 206 deletions

View File

@@ -479,10 +479,7 @@ bool SEQ_proxy_rebuild_context(Main *bmain,
return true;
}
void SEQ_proxy_rebuild(SeqIndexBuildContext *context,
short *stop,
short *do_update,
float *progress)
void SEQ_proxy_rebuild(SeqIndexBuildContext *context, bool *stop, bool *do_update, float *progress)
{
const bool overwrite = context->overwrite;
SeqRenderData render_context;