aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorUneven Prankster <unevenprankster@protonmail.com>2023-08-12 12:59:59 -0300
committerUneven Prankster <unevenprankster@protonmail.com>2023-08-12 12:59:59 -0300
commite7379bed59af0f50126af61953bc4f10af04a4dd (patch)
treed99e98f0709821edccfa2ef1cbba9381a46abb22 /src
parenta2cb2ee59296e466bab94d9a96c331648ef212b0 (diff)
Few tweaks for proper compilation, config.h changes and removed tccdefs.h usage. Gunner's TCC fork is further functionally freestanding now.
Diffstat (limited to 'src')
-rw-r--r--src/fmv.c11
1 files changed, 10 insertions, 1 deletions
diff --git a/src/fmv.c b/src/fmv.c
index 262fc63..40efa8d 100644
--- a/src/fmv.c
+++ b/src/fmv.c
@@ -1,2 +1,11 @@
+#if defined(__GNUC__)
+ #pragma GCC diagnostic push
+ #pragma GCC diagnostic ignored "-Wtype-limits"
+#endif
+
#define PL_MPEG_IMPLEMENTATION
-#include "plmpeg.h" \ No newline at end of file
+#include "pl_mpeg.h"
+
+#if defined(__GNUC__)
+ #pragma GCC diagnostic pop
+#endif \ No newline at end of file