ft2-clone

Fasttracker 2 clone
Log | Files | Refs | README | LICENSE

commit c923ad1be8e33036ac95e4a405a75551eb693bf4
parent 0f0dff3f87ed7b5464b8117d9c8020413278ead7
Author: Sigrid Solveig Haflínudóttir <sigrid@ftrv.se>
Date:   Thu,  4 May 2023 04:19:08 +0200

ft2_load_aiff.c: include <math.h> for round() + exp2()

Diffstat:
Msrc/smploaders/ft2_load_aiff.c | 1+
1 file changed, 1 insertion(+), 0 deletions(-)

diff --git a/src/smploaders/ft2_load_aiff.c b/src/smploaders/ft2_load_aiff.c @@ -8,6 +8,7 @@ #include <stdio.h> #include <stdint.h> #include <stdbool.h> +#include <math.h> #include "../ft2_header.h" #include "../ft2_audio.h" #include "../ft2_sample_ed.h"