aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/MacVST/Tape/source/Tape.h
diff options
context:
space:
mode:
authorChris Johnson <jinx6568@sover.net>2020-04-19 20:15:15 -0400
committerChris Johnson <jinx6568@sover.net>2020-04-19 20:15:15 -0400
commit32e2e4d41d8926b684329b508c576b640c547959 (patch)
treeba14e69ca092f60b2005a210667f7dfefe083f18 /plugins/MacVST/Tape/source/Tape.h
parent6303bd453cc0defc93801713fe3100f0c857f389 (diff)
downloadairwindows-lv2-port-32e2e4d41d8926b684329b508c576b640c547959.tar.gz
airwindows-lv2-port-32e2e4d41d8926b684329b508c576b640c547959.tar.bz2
airwindows-lv2-port-32e2e4d41d8926b684329b508c576b640c547959.zip
Tape Redux
Modifications to allow for a Bump control that enables level setting on the head bump
Diffstat (limited to 'plugins/MacVST/Tape/source/Tape.h')
-rwxr-xr-xplugins/MacVST/Tape/source/Tape.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/plugins/MacVST/Tape/source/Tape.h b/plugins/MacVST/Tape/source/Tape.h
index 6c1dc00..932247b 100755
--- a/plugins/MacVST/Tape/source/Tape.h
+++ b/plugins/MacVST/Tape/source/Tape.h
@@ -17,7 +17,8 @@
enum {
kParamA = 0,
- kNumParameters = 1
+ kParamB = 1,
+ kNumParameters = 2
}; //
const int kNumPrograms = 0;
@@ -80,6 +81,7 @@ private:
//default stuff
float A;
+ float B;
};
#endif