src/lib/cache.c
changeset 15 01de253f3bbf
parent 13 294201975f8c
child 17 baf3fe7c6354
--- a/src/lib/cache.c	Tue Dec 29 15:34:09 2009 +0200
+++ b/src/lib/cache.c	Tue Dec 29 15:34:18 2009 +0200
@@ -411,8 +411,8 @@
  */
 static inline void tile_row_fill_clip (struct pt_cache *cache, png_byte *row, size_t width_px)
 {
-    // XXX: use a defined background color, or full transparency?
-    memset(row, 0, width_px * cache->header->col_bytes);
+    // XXX: use a configureable background color, or full transparency?
+    memset(row, /* 0xd7 */ 0x00, width_px * cache->header->col_bytes);
 }
 
 /**