diff options
Diffstat (limited to 'src/control.h')
-rw-r--r-- | src/control.h | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/src/control.h b/src/control.h index 8eee97b..45e87ed 100644 --- a/src/control.h +++ b/src/control.h @@ -29,18 +29,6 @@ typedef struct cc_t { } cc_t; #ifndef CC -#define CC2(NAME, MIN, MAX, STEP, DEF) \ - (cc_t) { \ - .name = NAME, \ - .midi_cc = -1, \ - .min = MIN, \ - .max = MAX, \ - .step = STEP, \ - .def = DEF, \ - .value = DEF, \ - .mod = 0, \ - .target = DEF \ - }; #define CC(SYNTH, NAME, MIN, MAX, STEP, DEF) \ strcpy(SYNTH.name, NAME); \ SYNTH.midi_cc = -1; \ |