a new method for setting chan osc rate...

This commit is contained in:
tildearrow 2025-03-01 00:33:15 -05:00
parent c83ecfe993
commit 0eea0ec139

View file

@ -428,6 +428,7 @@ struct DivSamplePos {
struct DivDispatchOscBuffer {
bool follow;
unsigned int rate;
size_t rateMul;
unsigned short needle;
unsigned short readNeedle;
unsigned short followNeedle;
@ -446,6 +447,9 @@ struct DivDispatchOscBuffer {
}
inline void end(unsigned short len) {
needle+=len;
}
void setRate(unsigned int r) {
}
DivDispatchOscBuffer():
follow(true),