fix code format

This commit is contained in:
matthias@arch 2023-10-30 16:07:52 +01:00
parent 80b59713e5
commit 662a360b2f
2 changed files with 2 additions and 2 deletions

View File

@ -63,6 +63,7 @@ struct config
{
bool animate;
uint8_t animation;
uint8_t animation_fg;
char asterisk;
uint8_t bg;
bool bigclock;
@ -72,7 +73,6 @@ struct config
char* console_dev;
uint8_t default_input;
uint8_t fg;
uint8_t animation_fg;
bool hide_borders;
bool hide_key_hints;
uint8_t input_len;

View File

@ -922,8 +922,8 @@ static void matrix(struct term_buf* buf)
for (int i = 1; i <= buf->height; ++i)
{
uint32_t c;
int bg = TB_DEFAULT;
int fg = config.animation_fg;
int bg = TB_DEFAULT;
if (s->grid[i][j].val == -1 || s->grid[i][j].val == ' ')
{