diff options
author | gramanas <anastasis.gramm2@gmail.com> | 2023-11-26 16:37:54 +0200 |
---|---|---|
committer | gramanas <anastasis.gramm2@gmail.com> | 2023-11-26 16:37:54 +0200 |
commit | fb31c071fe835c5ffd1f70d3558acecee2ed7f17 (patch) | |
tree | 914baaab271de13d086428634a4834a4a08a6926 /src/synth_engine.h | |
parent | 8d17aa29baf0b33229dbdd82d8d5f6cbe3fe0240 (diff) | |
download | synth-project-fb31c071fe835c5ffd1f70d3558acecee2ed7f17.tar.gz synth-project-fb31c071fe835c5ffd1f70d3558acecee2ed7f17.tar.bz2 synth-project-fb31c071fe835c5ffd1f70d3558acecee2ed7f17.zip |
Make synth a pointer
Diffstat (limited to 'src/synth_engine.h')
-rw-r--r-- | src/synth_engine.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/synth_engine.h b/src/synth_engine.h index d01331f..34f90b2 100644 --- a/src/synth_engine.h +++ b/src/synth_engine.h @@ -94,7 +94,7 @@ typedef struct { int octave; int delay; - float del[SAMPLE_RATE * 10]; + float * del; int deli; float del_time; float del_feedback; @@ -119,7 +119,7 @@ typedef struct { osc_t * osctri; } synth_t; -void init_synth(synth_t * synth); +synth_t * init_synth(); void free_synth(synth_t * synth); #endif /* SYNTH_ENGINE_H */ |