blob: ac1b8c0c617f5f20caeb7eaa6850cab21f767380 [file] [log] [blame]
--- game/main.cpp
+++ game/main.cpp
@@ -28,6 +28,8 @@
#include <sys/stat.h>
#include <sys/types.h>
+#include <zlib.h>
+
void migrateConfig( void)
{
//if onlineCheck is not set, default it to true
--- utilssdl/PNG.cpp
+++ utilssdl/PNG.cpp
@@ -45,7 +45,7 @@
{
png_size_t 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);