audio issue debugging

This commit is contained in:
tildearrow 2023-07-06 18:29:29 -05:00
parent a267901b18
commit ce2661df66
4 changed files with 44 additions and 2 deletions

View file

@ -1694,6 +1694,10 @@ void DivEngine::runMidiTime(int totalCycles) {
}
void DivEngine::nextBuf(float** in, float** out, int inChans, int outChans, unsigned int size) {
lastNBIns=inChans;
lastNBOuts=outChans;
lastNBSize=size;
if (!size) {
logW("nextBuf called with size 0!");
return;