remove unneeded libpng version checks

This commit is contained in:
Stefan Seyfried
2013-05-01 16:37:58 +02:00
parent e92afd2b42
commit 23ec489390
3 changed files with 0 additions and 16 deletions

View File

@@ -457,11 +457,7 @@ bool CLCDDisplay::load_png(const char * const filename)
png_destroy_read_struct(&png_ptr, (png_infopp)NULL, (png_infopp)NULL);
else
{
#if (PNG_LIBPNG_VER < 10500)
if (!(setjmp(png_ptr->jmpbuf)))
#else
if (!setjmp(png_jmpbuf(png_ptr)))
#endif
{
png_init_io(png_ptr,fh);