|
|
@ -16,7 +16,7 @@ synth_t* synth_create(const char* brand, const char* model, int osc_count) { |
|
|
|
new_synth->brand = brand; |
|
|
|
new_synth->model = model; |
|
|
|
new_synth->osc_count = osc_count; |
|
|
|
new_synth->technolgy = ANALOG; |
|
|
|
new_synth->technology = ANALOG; |
|
|
|
new_synth->filter.technology = ANALOG; |
|
|
|
new_synth->filter.type = LPF; |
|
|
|
} |
|
|
@ -78,7 +78,7 @@ const char* play_synth(synth_t* synth) { |
|
|
|
char osc[4]; |
|
|
|
sprintf(osc, "%i", synth->osc_count); |
|
|
|
|
|
|
|
const char* tech = tech_to_string(&synth->technolgy); |
|
|
|
const char* tech = tech_to_string(&synth->technology); |
|
|
|
const char* filt_tech = tech_to_string(&synth->filter.technology); |
|
|
|
const char* filt_type = filtertype_to_string(&synth->filter.type); |
|
|
|
|
|
|
|