From 3890f1de38b875beb408a39dc32176ee973cab4a Mon Sep 17 00:00:00 2001 From: Krzysztof Jakubowski Date: Sun, 6 Oct 2024 15:01:25 +0200 Subject: [PATCH] Disabled STB_IMAGE_STATIC This will allow for zlib functions to be used externally (for example in tinyexr). --- src/gfx/image_stbi.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/src/gfx/image_stbi.cpp b/src/gfx/image_stbi.cpp index 241b6a30..b9383ee8 100644 --- a/src/gfx/image_stbi.cpp +++ b/src/gfx/image_stbi.cpp @@ -8,7 +8,6 @@ #define STBI_NO_PSD #define STBI_NO_STDIO -#define STB_IMAGE_STATIC #define STB_IMAGE_IMPLEMENTATION #include "../extern/stb_image.h"