diff options
author | gramanas <anastasis.gramm2@gmail.com> | 2023-11-21 14:07:33 +0200 |
---|---|---|
committer | gramanas <anastasis.gramm2@gmail.com> | 2023-11-21 14:07:33 +0200 |
commit | c03d395f6848fe9b2d1185173a9cf5ec8277394f (patch) | |
tree | 2dad9fe79a189096b713559e35cf49497fea817a /src/synth.c | |
parent | a7c39399e3ec051f210d9e991fe0112d0f988817 (diff) | |
download | synth-project-c03d395f6848fe9b2d1185173a9cf5ec8277394f.tar.gz synth-project-c03d395f6848fe9b2d1185173a9cf5ec8277394f.tar.bz2 synth-project-c03d395f6848fe9b2d1185173a9cf5ec8277394f.zip |
Crappy fft for spectrum analysis and initial gtk test
Diffstat (limited to 'src/synth.c')
-rw-r--r-- | src/synth.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/synth.c b/src/synth.c index 1113a56..ea4a8f7 100644 --- a/src/synth.c +++ b/src/synth.c @@ -30,18 +30,16 @@ #include <portmidi.h> /* graphics */ +#include "synth_gui.h" /* synth */ #include "synth_engine.h" -#include "synth_gui.h" #include "midi.h" #define NUM_SECONDS (1) #define WAVE_SIZE (44100) - - int main(void) { synth_t synth; |