summaryrefslogtreecommitdiff
path: root/stb_image.c
diff options
context:
space:
mode:
authorpommicket <pommicket@gmail.com>2023-01-02 14:22:10 -0500
committerpommicket <pommicket@gmail.com>2023-01-02 14:22:10 -0500
commit9278c63caff34a8c264416705a5658ee0b5210ef (patch)
treef3d3e6f8cc077e33348cc0a1ea7c1938848403d4 /stb_image.c
parentf791aa01fad7e81223808584212c6a1a4c80ca07 (diff)
fix tcc build problems
Diffstat (limited to 'stb_image.c')
-rw-r--r--stb_image.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/stb_image.c b/stb_image.c
index 2fa181b..ae13415 100644
--- a/stb_image.c
+++ b/stb_image.c
@@ -1,4 +1,7 @@
// used for debug build to speed things up
// just exports everything in stb_image.h
#define STB_IMAGE_IMPLEMENTATION
+#if __TINYC__
+#define STBI_NO_SIMD
+#endif
#include "lib/stb_image.h"