mirror of https://github.com/fairyglade/ly.git
fix code format
This commit is contained in:
parent
80b59713e5
commit
662a360b2f
|
|
@ -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;
|
||||
|
|
|
|||
|
|
@ -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 == ' ')
|
||||
{
|
||||
|
|
|
|||
Loading…
Reference in New Issue