Cleanup
This commit is contained in:
parent
b990e7b6a2
commit
ea07d8931c
12
autistdraw.c
12
autistdraw.c
|
@ -604,10 +604,7 @@ end:
|
|||
|
||||
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
||||
|
||||
static const char *
|
||||
color_to_ansi (uint8_t color)
|
||||
{
|
||||
static const char *table[2 * PALETTE_WIDTH] =
|
||||
static const char *g_ansi_table[2 * PALETTE_WIDTH] =
|
||||
{
|
||||
"\033[0m",
|
||||
"\033[0;40m",
|
||||
|
@ -629,9 +626,12 @@ color_to_ansi (uint8_t color)
|
|||
"\033[0;1;7;37m",
|
||||
};
|
||||
|
||||
if (color >= sizeof table / sizeof table[0])
|
||||
static const char *
|
||||
color_to_ansi (uint8_t color)
|
||||
{
|
||||
if (color < N_ELEMENTS (g_ansi_table))
|
||||
return g_ansi_table[color];
|
||||
return NULL;
|
||||
return table[color];
|
||||
}
|
||||
|
||||
static void
|
||||
|
|
Loading…
Reference in New Issue