From 38165e80714aeb8597d436f18a2a9d0155148f3f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ki=C3=ABd=20Llaentenn?= Date: Thu, 17 Sep 2020 18:40:38 +0000 Subject: [PATCH] fix truecolor suport --- draw.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/draw.c b/draw.c index a639798..7368bdb 100644 --- a/draw.c +++ b/draw.c @@ -41,7 +41,7 @@ init(struct buffer *buf) // calloc sets the entire screen to black // ...except for the last row, which is white. // this is the 'base' of the fire. - memset(buf->buf + len, opts->truecolor ? 35 : 12, buf->width); + memset(buf->buf + len, opts->truecolor ? 34 : 12, buf->width); } // update the framebuffer