Add blue color to all files

This commit is contained in:
Such Meme, Many Skill 2019-08-16 16:21:02 +02:00
parent d65eaedb14
commit cd786af805
1 changed files with 3 additions and 2 deletions

View File

@ -59,13 +59,14 @@ void meme_clearscreen(){
void _printwithhighlight(int offset, int folderamount, char *items[], int highlight, unsigned int *muhbits){
char temp[39];
int i = 0;
int ret = 0;
int ret = 0;
gfx_con_setpos(0, 32);
while(i < folderamount && i < 76){
ret = _copystring(temp, items[i + offset], 39);
if(i == highlight - 1) gfx_printf("\n%k%p%s%k%p", COLOR_DEFAULT, COLOR_WHITE, temp, COLOR_WHITE, COLOR_DEFAULT);
else if ((i == 0 || i == 1) && offset == 0) gfx_printf("%k\n%s%k", COLOR_ORANGE, temp, COLOR_WHITE);
else gfx_printf("\n%s", temp);
else if (muhbits[i+offset] & OPTION1) gfx_printf("\n%s", temp);
else gfx_printf("%k\n%s%k", COLOR_BLUE, temp, COLOR_WHITE);
while(ret >= 0){
gfx_printf(" ");