mirror of https://github.com/fairyglade/ly.git
Fix conversion warning
This commit is contained in:
parent
3fee7c787d
commit
78f22bf878
|
|
@ -788,8 +788,8 @@ static void matrix(struct term_buf* buf)
|
|||
for (int i = 1; i <= buf->height; ++i)
|
||||
{
|
||||
u32 c;
|
||||
u16 fg = TB_GREEN;
|
||||
u16 bg = TB_DEFAULT;
|
||||
int fg = TB_GREEN;
|
||||
int bg = TB_DEFAULT;
|
||||
|
||||
if (s->grid[i][j].val == -1 || s->grid[i][j].val == ' ')
|
||||
{
|
||||
|
|
|
|||
Loading…
Reference in New Issue