diff options
author | gramanas <anastasis.gramm2@gmail.com> | 2023-06-28 22:40:47 +0300 |
---|---|---|
committer | gramanas <anastasis.gramm2@gmail.com> | 2023-06-28 22:40:47 +0300 |
commit | 89e85142d0958d3e3a87fb155d698fc59eafd4c6 (patch) | |
tree | 013c3e878a6fa3b822999e05771e129777e37323 /src/synth_engine.h | |
parent | 60c82a72fedd719f69c1f1de896aca00784a2881 (diff) | |
download | synth-project-89e85142d0958d3e3a87fb155d698fc59eafd4c6.tar.gz synth-project-89e85142d0958d3e3a87fb155d698fc59eafd4c6.tar.bz2 synth-project-89e85142d0958d3e3a87fb155d698fc59eafd4c6.zip |
Remove old note stuff
Diffstat (limited to 'src/synth_engine.h')
-rw-r--r-- | src/synth_engine.h | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/src/synth_engine.h b/src/synth_engine.h index 0c8145f..e2e91fd 100644 --- a/src/synth_engine.h +++ b/src/synth_engine.h @@ -32,14 +32,6 @@ typedef struct lfo_t { unsigned long long elapsed; } lfo_t; -typedef struct note_t { - float freq; - PaTime noteOn; - PaTime noteOff; - int key; - unsigned long long elapsed; -} note_t; - typedef struct midi_note_t { float freq; int channel; @@ -74,7 +66,6 @@ typedef struct { midi_note_t midi_note[MIDI_NOTES]; - note_t n; adsr_t adsr; lfo_t lfo; |