From 56fabaf142b6ef68cfa834ef03138dd34e244cf8 Mon Sep 17 00:00:00 2001 From: HouzuoGuo Date: Tue, 1 Nov 2016 15:08:46 +0100 Subject: [PATCH] make local mouse cursor red, which is easier to spot --- viewer.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/viewer.c b/viewer.c index e2af88b..012cbbe 100644 --- a/viewer.c +++ b/viewer.c @@ -174,7 +174,7 @@ void viewer_redraw(struct viewer *v) * right there. */ if (geo_dither_numch_x(¶ms, 12) < 5) { - caca_set_color_ansi(v->view, CACA_WHITE, CACA_BLUE); + caca_set_color_ansi(v->view, CACA_WHITE, CACA_RED); int ch_x = geo_dither_ch_px_x(¶ms, v->geo.mouse_x); int ch_y = geo_dither_ch_px_y(¶ms, v->geo.mouse_y); caca_fill_box(v->view, ch_x - 1, ch_y - 1, 3, 3, '*');