summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlex <zc00gii@gmail.com>2010-08-16 22:12:42 (GMT)
committer FacialTurd <simon@hardwired.org.uk>2010-08-17 11:00:10 (GMT)
commitd6c0211c54a004fe6e61810a799562f15efc84c8 (patch)
treecb831ac82228786f3409096d3610e3e715fdcd6e
parentec1ab3fbcfcf9de58c3f14ff393dbcceffe47d05 (diff)
downloadpowder-d6c0211c54a004fe6e61810a799562f15efc84c8.zip
powder-d6c0211c54a004fe6e61810a799562f15efc84c8.tar.gz
fix gas
-rw-r--r--powder.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/powder.c b/powder.c
index 1e27abd..a46bb59 100644
--- a/powder.c
+++ b/powder.c
@@ -3152,7 +3152,7 @@ justdraw:
for(y=-1; y<=1; y++)
{
if ((abs(x) == 0) && (abs(y) == 0))
- blendpixel(vid,x+nx,y+ny,224,255,32,255);
+ blendpixel(vid,x+nx,y+ny,224,255,32,100);
else if (abs(y) != 0 || abs(x) != 0)
blendpixel(vid,x+nx,y+ny,224,255,32,20);
}