From: =?utf-8?q?Timo_R=C3=B6hling?= <timo@gaussglocke.de>
Date: Mon, 16 Nov 2020 19:13:34 +0100
Subject: Use zlib instead of embedded miniz

---
 tinyexr.h | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/tinyexr.h b/tinyexr.h
index 2580ae0..ac2a363 100644
--- a/tinyexr.h
+++ b/tinyexr.h
@@ -106,7 +106,7 @@ extern "C" {
 // Use miniz or not to decode ZIP format pixel. Linking with zlib
 // required if this flas is 0.
 #ifndef TINYEXR_USE_MINIZ
-#define TINYEXR_USE_MINIZ (1)
+#define TINYEXR_USE_MINIZ (0)
 #endif
 
 // Disable PIZ comporession when applying cpplint.
@@ -616,7 +616,7 @@ extern int LoadEXRFromMemory(float **out_rgba, int *width, int *height,
 #else
 //  Issue #46. Please include your own zlib-compatible API header before
 //  including `tinyexr.h`
-//#include "zlib.h"
+#include <zlib.h>
 #endif
 
 #if TINYEXR_USE_ZFP
