13
0

fix another typo (f30fbcaaf)

This commit is contained in:
Robin Gareus 2016-11-15 01:17:47 +01:00
parent 9280e148cc
commit 4e8d705d99

View File

@ -92,10 +92,10 @@ maybe_set_program (VSTState* fst)
// XXX check
// 24 == audioMasterGetAutomationState,
// 48 == audioMasterGetChunkFile
pthread_mutex_lock (&vstfx->state_lock);
pthread_mutex_lock (&fst->state_lock);
fst->plugin->dispatcher (fst->plugin, 24 /* effSetChunk */, 1, fst->wanted_chunk_size, fst->wanted_chunk, 0);
fst->want_chunk = 0;
pthread_mutex_unlock (&vstfx->state_lock);
pthread_mutex_unlock (&fst->state_lock);
}
}