You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/games-puzzle/shaaft/files/shaaft-0.5.0-libpng15.patch

21 lines
472 B

--- utilssdl/PNG.cpp
+++ utilssdl/PNG.cpp
@@ -45,7 +45,7 @@
{
png_uint_32 check;
- check = fwrite( data, 1, length, (FILE *)(png->io_ptr));
+ check = fwrite( data, 1, length, (FILE *)(png_get_io_ptr(png)));
if( check != length)
{
png_error( png, "Write Error");
@@ -72,7 +72,7 @@
return false;
}
- if( setjmp(_png->jmpbuf))
+ if( setjmp(png_jmpbuf(_png)))
{
fclose( fp);
png_destroy_write_struct(&_png, (png_infopp)NULL);