From f2ead3c6c52f5b6800898736bc359ff162a7b95c Mon Sep 17 00:00:00 2001 From: Milan Date: Wed, 11 Nov 2020 14:59:17 +0100 Subject: [PATCH] fixes to get it working with gint v2 --- liblog.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/liblog.c b/liblog.c index 872feac..105e1b4 100644 --- a/liblog.c +++ b/liblog.c @@ -200,7 +200,7 @@ static void show_line(const log_line* l, int y) { font_t const * f=dfont(0); - dtext(1, y, &l->text[0], C_BLACK, C_NONE); + dtext(1, y, C_BLACK, &l->text[0]); dfont(f); } @@ -220,7 +220,8 @@ void ll_display_custom(log_line* line) if (!line) break; } - dupdate_noint(); + //dupdate_noint(); broke with gint update :thinking: + dupdate(); }