From f425a809969f9b59591ea8d406dc10a5f0a93166 Mon Sep 17 00:00:00 2001 From: girst Date: Sat, 19 May 2018 01:54:44 +0200 Subject: [PATCH] even worse coloring hack --- viiper.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/viiper.c b/viiper.c index c3a0f0b..61fd40d 100644 --- a/viiper.c +++ b/viiper.c @@ -261,7 +261,7 @@ void show_playfield (void) { (s->next->c > s->c) ? EAST: (s->next->c < s->c) ? WEST:NONE; - printf ("\033[%sm", color==-1?"91":color?"92":"32"); + printf ("\033[%sm", color==-1?"1m\033[92":color?"92":"32"); //TODO: clean this up print (op.scheme->snake[predecessor][successor]); printf ("\033[0m"); last = s; -- 2.39.3