blip_buf clock<rate bug workaround, part 1

issue #1055
now I gotta think of a strategy for dispatch
This commit is contained in:
tildearrow 2023-04-13 18:11:10 -05:00
parent 5b154c2ddf
commit f1c6cd5097
3 changed files with 31 additions and 8 deletions

View file

@ -414,6 +414,7 @@ class DivEngine {
int wave;
int pos;
int pBegin, pEnd;
int rateMul, posSub;
bool dir;
SamplePreview():
rate(0.0),
@ -422,6 +423,8 @@ class DivEngine {
pos(0),
pBegin(-1),
pEnd(-1),
rateMul(1),
posSub(0),
dir(false) {}
} sPreview;