Oops! Fix MinGW build issue caused by ripping out nedmalloc

git-svn-id: https://svn.eduke32.com/eduke32@3087 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
terminx 2012-10-15 00:38:41 +00:00
parent a5f479787f
commit c04bae8c13
1 changed files with 1 additions and 1 deletions

View File

@ -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);