furnace/src/engine/platform/abstract.cpp
tildearrow 6a02754996 add PAL flag to dispatch
now platforms run at their correct clock speed when in PAL mode

also fix clipping in Genesis
2021-12-08 01:56:40 -05:00

23 lines
399 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(int ch) {
return false;
}
int DivDispatch::init(DivEngine* p, int channels, int sugRate, bool pal) {
return 0;
}