summaryrefslogtreecommitdiffstats
path: root/src/synth_engine.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/synth_engine.h')
-rw-r--r--src/synth_engine.h4
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 */