From c04bae8c130cff138ff118d029b063ae15b09ce4 Mon Sep 17 00:00:00 2001 From: terminx Date: Mon, 15 Oct 2012 00:38:41 +0000 Subject: [PATCH] Oops! Fix MinGW build issue caused by ripping out nedmalloc git-svn-id: https://svn.eduke32.com/eduke32@3087 1a8010ca-5511-0410-912e-c29ae57300e0 --- polymer/eduke32/build/src/engine.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/polymer/eduke32/build/src/engine.c b/polymer/eduke32/build/src/engine.c index f31ed2444..c3a6b25e1 100644 --- a/polymer/eduke32/build/src/engine.c +++ b/polymer/eduke32/build/src/engine.c @@ -15844,7 +15844,7 @@ static int32_t screencapture_png(const char *filename, char inverseit, const cha return i; /* Create and initialize the png_struct with default error handling. */ - png_ptr = png_create_write_struct_2(PNG_LIBPNG_VER_STRING, NULL, NULL, NULL, Bmalloc, Bfree); + png_ptr = png_create_write_struct(PNG_LIBPNG_VER_STRING, NULL, NULL, NULL); if (png_ptr == NULL) { Bfclose(fp);