mirror of
https://github.com/suchmememanyskill/TegraExplorer.git
synced 2024-11-09 13:41:45 +00:00
Add blue color to all files
This commit is contained in:
parent
d65eaedb14
commit
cd786af805
1 changed files with 3 additions and 2 deletions
|
@ -65,7 +65,8 @@ void _printwithhighlight(int offset, int folderamount, char *items[], int highli
|
|||
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(" ");
|
||||
|
|
Loading…
Reference in a new issue