From 315494d6179e90e97a5e366dfc4419575682a08d Mon Sep 17 00:00:00 2001 From: Werner Almesberger Date: Tue, 9 Aug 2016 14:19:21 -0300 Subject: [PATCH] eeshow/diff.c: make red a little less dominant --- eeshow/diff.c | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/eeshow/diff.c b/eeshow/diff.c index 114a5bf..bda0f08 100644 --- a/eeshow/diff.c +++ b/eeshow/diff.c @@ -37,6 +37,15 @@ #define MASK 0xffffff +/* steal from schhist/ppmdiff.c */ + +#define ONLY_OLD 0xff5050 +#define ONLY_NEW 0x00c000 +#define BOTH 0x707070 + +#define AREA_FILL 0xffffc8 + + struct area { int xa, ya, xb, yb; @@ -178,15 +187,6 @@ fail_open: } -/* steal from schhist/ppmdiff.c */ - -#define ONLY_OLD 0xff0000 -#define ONLY_NEW 0x00d000 -#define BOTH 0x707070 - -#define AREA_FILL 0xffffc8 - - static void mark_area(struct diff *diff, int x, int y) { struct area *area;