diff options
-rw-r--r-- | src/render.c | 6 |
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; } } |