aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFelix Domke <tmbinc@elitedvb.net>2005-12-05 03:14:40 +0000
committerFelix Domke <tmbinc@elitedvb.net>2005-12-05 03:14:40 +0000
commit140a68de78d89faa79e64f29179a254ab8bd2607 (patch)
tree45e748e8bb229c12e7b4126fb224036c67f7df70
parent02226aee689caad4d05e65448ec7640d33e8f659 (diff)
downloadenigma2-140a68de78d89faa79e64f29179a254ab8bd2607.tar.gz
enigma2-140a68de78d89faa79e64f29179a254ab8bd2607.zip
png: remove debug
-rw-r--r--lib/gdi/epng.cpp3
1 files changed, 1 insertions, 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<gPixmap> &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];