diff options
author | Thomas White <taw@physics.org> | 2010-03-17 14:11:20 +0100 |
---|---|---|
committer | Thomas White <taw@physics.org> | 2010-03-17 14:11:20 +0100 |
commit | f835702bac978da282bc13c8ed2cec1221f391e1 (patch) | |
tree | 1ae8ca43ab0023e3aa1cb0ad4f56875cd893e332 | |
parent | a93bb04eba65f2cd7964a8c749b45921aa922caf (diff) |
hdfsee: Make circles blue
-rw-r--r-- | src/render.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/render.c b/src/render.c index 385944df..432b81ab 100644 --- a/src/render.c +++ b/src/render.c @@ -201,7 +201,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] = 255; + 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; } } |