png: remove debug
authorFelix Domke <tmbinc@elitedvb.net>
Mon, 5 Dec 2005 03:14:40 +0000 (03:14 +0000)
committerFelix Domke <tmbinc@elitedvb.net>
Mon, 5 Dec 2005 03:14:40 +0000 (03:14 +0000)
lib/gdi/epng.cpp

index 30cc5297bd9b5e199b16c4c2558a0c508dfc9ed9..5b23757366f842202e7756664e79551b5fee9f16 100644 (file)
@@ -66,12 +66,11 @@ int loadPNG(ePtr<gPixmap> &result, const char *filename)
        
        png_get_IHDR(png_ptr, info_ptr, &width, &height, &bit_depth, &color_type, 0, 0, 0);
        
        
        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);
        
        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];
                gSurface *surface = result->surface;
        
                png_bytep *rowptr=new png_bytep[height];