mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-11 07:11:39 +00:00
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:
parent
a5f479787f
commit
c04bae8c13
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue