From 140a68de78d89faa79e64f29179a254ab8bd2607 Mon Sep 17 00:00:00 2001 From: Felix Domke Date: Mon, 5 Dec 2005 03:14:40 +0000 Subject: [PATCH] png: remove debug --- lib/gdi/epng.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/lib/gdi/epng.cpp b/lib/gdi/epng.cpp index 30cc5297..5b237573 100644 --- a/lib/gdi/epng.cpp +++ b/lib/gdi/epng.cpp @@ -66,12 +66,11 @@ int loadPNG(ePtr &result, const char *filename) png_get_IHDR(png_ptr, info_ptr, &width, &height, &bit_depth, &color_type, 0, 0, 0); - eDebug("%s: %dx%dx%d png, %d", filename, (int)width, (int)height, (int)bit_depth, color_type); +// eDebug("%s: %dx%dx%d png, %d", filename, (int)width, (int)height, (int)bit_depth, color_type); if (color_type != 6) { result=new gPixmap(eSize(width, height), bit_depth); - eDebug("gPixmap at %p", (gPixmap*)result); gSurface *surface = result->surface; png_bytep *rowptr=new png_bytep[height]; -- 2.30.2