aboutsummaryrefslogtreecommitdiffstats
path: root/src/mdaLooplex.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mdaLooplex.h')
-rw-r--r--src/mdaLooplex.h9
1 files changed, 3 insertions, 6 deletions
diff --git a/src/mdaLooplex.h b/src/mdaLooplex.h
index e838c7f..f35e83a 100644
--- a/src/mdaLooplex.h
+++ b/src/mdaLooplex.h
@@ -18,8 +18,6 @@ class mdaLooplexProgram
friend class mdaLooplex;
public:
mdaLooplexProgram();
- ~mdaLooplexProgram() {}
-
private:
float param[NPARAMS];
char name[24];
@@ -63,21 +61,20 @@ public:
private:
void update(); //my parameter update
- float param[NPARAMS];
mdaLooplexProgram* programs;
float Fs;
#define EVENTBUFFER 120
#define EVENTS_DONE 99999999
- long notes[EVENTBUFFER + 8]; //list of delta|note|velocity for current block
+ LvzInt32 notes[EVENTBUFFER + 8]; //list of delta|note|velocity for current block
///global internal variables
float in_mix, in_pan, out_mix, feedback, modwhl;
short *buffer;
- long bufpos, buflen, bufmax, mode;
+ LvzInt32 bufpos, buflen, bufmax, mode;
- long bypass, bypassed, busy, status, recreq;
+ LvzInt32 bypass, bypassed, busy, status, recreq;
float oldParam0, oldParam1, oldParam2;
};