limit number of render pool threads to chip count

This commit is contained in:
tildearrow 2023-09-07 01:16:27 -05:00
parent 157f3be253
commit a3cd0fa6ba
2 changed files with 8 additions and 1 deletions

View file

@ -3282,6 +3282,10 @@ void DivEngine::quitDispatch() {
for (int i=0; i<DIV_MAX_CHANS; i++) {
isMuted[i]=0;
}
if (renderPool!=NULL) {
delete renderPool;
renderPool=NULL;
}
BUSY_END;
}