make patchbay effective on samplepreview/metronome

This commit is contained in:
tildearrow 2023-01-12 03:31:43 -05:00
parent 9d327cacd8
commit 01f6e8f963
3 changed files with 148 additions and 137 deletions

View file

@ -427,6 +427,8 @@ class DivEngine {
short* samp_bbOut;
unsigned char* metroTick;
size_t metroTickLen;
float* metroBuf;
size_t metroBufLen;
float metroFreq, metroPos;
float metroAmp;
float metroVol;
@ -1129,6 +1131,8 @@ class DivEngine {
samp_bbOut(NULL),
metroTick(NULL),
metroTickLen(0),
metroBuf(NULL),
metroBufLen(0),
metroFreq(0),
metroPos(0),
metroAmp(0.0f),