diff options
| author | raysan5 <[email protected]> | 2020-01-19 12:49:33 +0100 |
|---|---|---|
| committer | raysan5 <[email protected]> | 2020-01-19 12:49:33 +0100 |
| commit | 9c52a4932d8f5495724bb94a2e64b646df44fc29 (patch) | |
| tree | 41b2b221d4a3939e856dcba0da5ebcfd066b1cde /src/external | |
| parent | edc1d2511d1c12d99c4d2f4313cb1f452acd1600 (diff) | |
| download | raylib-9c52a4932d8f5495724bb94a2e64b646df44fc29.tar.gz raylib-9c52a4932d8f5495724bb94a2e64b646df44fc29.zip | |
Corrected issue with types
Diffstat (limited to 'src/external')
| -rw-r--r-- | src/external/jar_xm.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/external/jar_xm.h b/src/external/jar_xm.h index cfb0d043..1839e619 100644 --- a/src/external/jar_xm.h +++ b/src/external/jar_xm.h @@ -51,6 +51,8 @@ #ifndef INCLUDE_JAR_XM_H #define INCLUDE_JAR_XM_H +#include <stdint.h> + #define JAR_XM_DEBUG 0 #define JAR_XM_LINEAR_INTERPOLATION 1 // speed increase with decrease in quality #define JAR_XM_DEFENSIVE 1 @@ -69,7 +71,7 @@ struct jar_xm_context_s; typedef struct jar_xm_context_s jar_xm_context_t; #ifdef __cplusplus -extern "C" { +extern "C" { #endif /** Create a XM context. @@ -308,7 +310,6 @@ uint64_t jar_xm_get_remaining_samples(jar_xm_context_t* ctx); #include <math.h> #include <stdio.h> #include <stdlib.h> -#include <stdint.h> #include <limits.h> #include <string.h> |
