mirror of
https://github.com/tildearrow/furnace.git
synced 2024-11-07 05:15:05 +00:00
35 lines
No EOL
532 B
C++
35 lines
No EOL
532 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;
|
|
}
|
|
|
|
void DivDispatch::reset() {
|
|
}
|
|
|
|
bool DivDispatch::isStereo() {
|
|
return false;
|
|
}
|
|
|
|
bool DivDispatch::keyOffAffectsArp(int ch) {
|
|
return false;
|
|
}
|
|
|
|
void DivDispatch::setPAL(bool pal) {
|
|
}
|
|
|
|
int DivDispatch::init(DivEngine* p, int channels, int sugRate, bool pal) {
|
|
return 0;
|
|
}
|
|
|
|
void DivDispatch::quit() {
|
|
}
|
|
|
|
DivDispatch::~DivDispatch() {
|
|
} |