aboutsummaryrefslogtreecommitdiff
path: root/src/render.c
diff options
context:
space:
mode:
authorThomas White <taw@physics.org>2010-08-13 14:16:06 +0200
committerThomas White <taw@physics.org>2012-02-22 15:26:55 +0100
commit5baa5111851f9fcb355312b0615a7543bcfeaa37 (patch)
tree44f5dea34a497fc2dc1c521dda04cac4865823ef /src/render.c
parent6291b3c7bb8b7a1da7a23efb8ed348ec6bf523e2 (diff)
hdfsee: Change colour of circles to show up better
Diffstat (limited to 'src/render.c')
-rw-r--r--src/render.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/render.c b/src/render.c
index 3d8c0521..7b694a25 100644
--- a/src/render.c
+++ b/src/render.c
@@ -240,9 +240,9 @@ static void show_marked_features(struct image *image, guchar *data,
if ( nx >= w ) continue;
if ( ny >= h ) continue;
- data[3*( nx+w*(h-1-ny) )+0] = 0;
- data[3*( nx+w*(h-1-ny) )+1] = 0;
- data[3*( nx+w*(h-1-ny) )+2] = 255;
+ data[3*( nx+w*(h-1-ny) )+0] = 128;
+ data[3*( nx+w*(h-1-ny) )+1] = 128;
+ data[3*( nx+w*(h-1-ny) )+2] = 30;
}
}