diff options
Diffstat (limited to 'imagecache.c')
-rw-r--r-- | imagecache.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/imagecache.c b/imagecache.c index 1ddc3e24..5453d7e2 100644 --- a/imagecache.c +++ b/imagecache.c @@ -29,7 +29,9 @@ void cImageCache::Clear(void) { } cImage* cImageCache::GetImage(std::string Name, int Width, int Height) { + //dsyslog("imagecache search for image %s Width %d Height %d", Name.c_str(), Width, Height); for(int index = 0; index < MAX_IMAGE_CACHE; index++ ) { + //dsyslog("imagecache index %d image %s Width %d Height %d", index, CacheName[index].c_str(), CacheWidth[index], CacheHeight[index]); if( CacheName[index] == Name && CacheWidth[index] == Width && CacheHeight[index] == Height ) return CacheImage[index]; } |