diff options
Diffstat (limited to 'imagecache.c')
-rw-r--r-- | imagecache.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/imagecache.c b/imagecache.c index 5c4c50a..25d2662 100644 --- a/imagecache.c +++ b/imagecache.c @@ -426,7 +426,6 @@ cImage *cImageCache::CreateGrid(int width, int height, bool active) { tColor *imgData = (tColor *)image->Data();
if (w != width || h != height) {
ImageScaler scaler;
- //esyslog("tvguide: imagescaler parameters: width %d, height %d, w %d, h %d", width, height, w, h);
scaler.SetImageParameters(imgData, width, width, height, w, h);
for (const void *pixels_end = &pixels[w*h]; pixels < pixels_end; ++pixels)
scaler.PutSourcePixel(pixels->blue / ((MaxRGB + 1) / 256),
|