From 7036af066bccd705847dd2b3b64a14ae7501e45a Mon Sep 17 00:00:00 2001 From: Cate Date: Tue, 12 Jul 2011 01:55:51 +0800 Subject: Fixed quartz colors due to missing Else before an If in graphics.c Thanks Savask. :D (I would have moved ifs around in a much less pleasant way @_@;) diff --git a/src/graphics.c b/src/graphics.c index dc00b17..1f3865e 100644 --- a/src/graphics.c +++ b/src/graphics.c @@ -2066,7 +2066,7 @@ void draw_parts(pixel *vid) blendpixel(vid, nx, ny, cr, cg, cb, 255); } - if(t==PT_LIFE && parts[i].ctype < NGOLALT){ + else if (t==PT_LIFE && parts[i].ctype < NGOLALT) { if (parts[i].ctype==NGT_LOTE)//colors for life states { if (parts[i].tmp==2) -- cgit v0.9.2-21-gd62e