fixes to get it working with gint v2

This commit is contained in:
Milan 2020-11-11 14:59:17 +01:00
parent b09c7bf7a0
commit f2ead3c6c5
1 changed files with 3 additions and 2 deletions

View File

@ -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();
}