warning-free compilation

This commit is contained in:
tildearrow 2021-12-14 12:33:26 -05:00
parent 9da9ed3cd7
commit bde8a7f79d
16 changed files with 28 additions and 35 deletions

View file

@ -799,7 +799,7 @@ void DivEngine::nextBuf(float** in, float** out, int inChans, int outChans, unsi
memset(bbIn[1]+runPos,0,runLeft*sizeof(short));
break;
} else {
if (runLeft>=cycles) {
if ((int)runLeft>=cycles) {
runLeft-=cycles;
dispatch->acquire(bbIn[0],bbIn[1],runPos,cycles);
runPos+=cycles;