fix more possible crashes when deleting ins

and added a fatal error if implementation is missing
This commit is contained in:
tildearrow 2023-01-19 00:37:37 -05:00
parent bb4dc21603
commit c1e26ee749
34 changed files with 111 additions and 10 deletions

View file

@ -18,6 +18,7 @@
*/
#include "../dispatch.h"
#include "../../ta-log.h"
void DivDispatch::acquire(short** buf, size_t len) {
}
@ -121,7 +122,8 @@ void DivDispatch::notifyWaveChange(int ins) {
}
void DivDispatch::notifyInsDeletion(void* ins) {
logE("notifyInsDeletion NOT implemented!");
abort();
}
void DivDispatch::notifyPlaybackStop() {