Update Fluidsynth to v2.0.7

This commit is contained in:
Robin Gareus 2019-09-30 23:10:33 +02:00
parent 549b2447f8
commit 07905f0776
No known key found for this signature in database
GPG key ID: A090BCE02CF57F04
9 changed files with 40 additions and 64 deletions

View file

@ -186,7 +186,7 @@ typedef void (*fluid_rvoice_function_t)(void *obj, const fluid_rvoice_param_t pa
#define FLUID_NEW(_t) (_t*)malloc(sizeof(_t))
#define FLUID_ARRAY_ALIGNED(_t,_n,_a) (_t*)malloc((_n)*sizeof(_t) + ((unsigned int)_a - 1u))
#define FLUID_ARRAY(_t,_n) FLUID_ARRAY_ALIGNED(_t,_n,1u)
#define FLUID_FREE(_p) free(_p)
#define FLUID_FREE(_p) fluid_free(_p)
/* File access */
#define FLUID_FOPEN(_f,_m) fopen(_f,_m)