summaryrefslogtreecommitdiff
path: root/fb.c
diff options
context:
space:
mode:
Diffstat (limited to 'fb.c')
-rw-r--r--fb.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fb.c b/fb.c
index 4a6a7d2..88fe017 100644
--- a/fb.c
+++ b/fb.c
@@ -92,7 +92,7 @@ rasterconvF2C(Raster *dst, Raster *src)
/* first run: get the domain */
f = (float*)src->data;
len = Dx(dst->r)*Dy(dst->r);
- for(min = 0, max = 0; len--; f++){
+ for(min = max = 0; len--; f++){
if(isInf(*f, -1)) /* -∞ is the DNotacolor of the z-buffer */
continue;
min = min(*f, min);