furnace/src/engine/platform/abstract.cpp
tildearrow 52087edceb lots of changes
- GUI: ability to load files
- GUI: arrow key navigation
- fix sample volumes
2021-12-15 00:37:27 -05:00

32 lines
492 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;
}
int DivDispatch::init(DivEngine* p, int channels, int sugRate, bool pal) {
return 0;
}
void DivDispatch::quit() {
}
DivDispatch::~DivDispatch() {
}