mirror of
https://github.com/tildearrow/furnace.git
synced 2024-11-27 06:53:01 +00:00
prepare for arp+pitch slide on linear pitch
will be a huge change
This commit is contained in:
parent
9da46ee8ba
commit
1127688229
1 changed files with 3 additions and 1 deletions
|
@ -28,7 +28,7 @@
|
|||
|
||||
// common shared channel struct
|
||||
template<typename T> struct SharedChannel {
|
||||
int freq, baseFreq, pitch, pitch2;
|
||||
int freq, baseFreq, baseFreqOverride, pitch, pitch2, arpOff;
|
||||
int ins, note;
|
||||
bool active, insChanged, freqChanged, keyOn, keyOff, portaPause, inPorta;
|
||||
T vol, outVol;
|
||||
|
@ -40,8 +40,10 @@ template<typename T> struct SharedChannel {
|
|||
SharedChannel(T initVol):
|
||||
freq(0),
|
||||
baseFreq(0),
|
||||
baseFreqOverride(-1),
|
||||
pitch(0),
|
||||
pitch2(0),
|
||||
arpOff(0),
|
||||
ins(-1),
|
||||
note(0),
|
||||
active(false),
|
||||
|
|
Loading…
Reference in a new issue