more optimization

as of now non-stereo sound chips are only processed once
This commit is contained in:
tildearrow 2021-12-06 16:51:18 -05:00
parent 6efcfc2e8a
commit d6fb6b0bb3
17 changed files with 66 additions and 41 deletions

View file

@ -1,6 +1,6 @@
#include "../dispatch.h"
void DivDispatch::acquire(short** buf, size_t start, size_t len) {
void DivDispatch::acquire(short* bufL, short* bufR, size_t start, size_t len) {
}
void DivDispatch::tick() {
@ -10,6 +10,10 @@ int DivDispatch::dispatch(DivCommand c) {
return 1;
}
bool DivDispatch::isStereo() {
return false;
}
int DivDispatch::init(DivEngine* p, int channels, int sugRate) {
return 0;
}