mirror of
https://github.com/tildearrow/furnace.git
synced 2024-11-07 05:15:05 +00:00
3ee761fc87
all modules play correctly, bar: - motherfunksignal (almost) - filters are a bit weird
23 lines
383 B
C++
23 lines
383 B
C++
#include "../dispatch.h"
|
|
|
|
void DivDispatch::acquire(short* bufL, short* bufR, size_t start, size_t len) {
|
|
}
|
|
|
|
void DivDispatch::tick() {
|
|
}
|
|
|
|
int DivDispatch::dispatch(DivCommand c) {
|
|
return 1;
|
|
}
|
|
|
|
bool DivDispatch::isStereo() {
|
|
return false;
|
|
}
|
|
|
|
bool DivDispatch::keyOffAffectsArp() {
|
|
return false;
|
|
}
|
|
|
|
int DivDispatch::init(DivEngine* p, int channels, int sugRate) {
|
|
return 0;
|
|
}
|