diff options
author | gramanas <anastasis.gramm2@gmail.com> | 2023-08-31 01:06:56 +0300 |
---|---|---|
committer | gramanas <anastasis.gramm2@gmail.com> | 2023-08-31 01:07:16 +0300 |
commit | 0ea48752390228224e7f25575b096efc0aacd70b (patch) | |
tree | 62756ecadab1459dc02fa19e42c3cbe81deb63e2 /src/osc.c | |
parent | 42479d2ed8fcbad5fb3ffb52553dad05a329590f (diff) | |
download | synth-project-0ea48752390228224e7f25575b096efc0aacd70b.tar.gz synth-project-0ea48752390228224e7f25575b096efc0aacd70b.tar.bz2 synth-project-0ea48752390228224e7f25575b096efc0aacd70b.zip |
Lets work on generators
Diffstat (limited to 'src/osc.c')
-rw-r--r-- | src/osc.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -78,7 +78,7 @@ osc_load_wav(osc_t * osc, const char * path) osc->end = fileInfo.frames; osc->data = (float *) malloc(sizeof(float) * fileInfo.frames); - // Read the WAV file into the buffer + // Read the WAV file into the buffer numSamplesRead = sf_readf_float(file, osc->data, fileInfo.frames); /* float max = -1000; */ |