Mess with the design a bit, prep for folder menu

This commit is contained in:
SuchMemeManySkill
2020-12-24 17:06:21 +01:00
parent 5190469e9c
commit b97bab3661
10 changed files with 73 additions and 21 deletions

View File

@@ -362,16 +362,22 @@ static void _gfx_putn(u32 v, int base, char fill, int fcnt)
v /= base;
} while (v);
if (minus){
*--p = '-';
c--;
}
if (fill != 0)
{
gfx_con.y -= c * 16;
/*
while (c > 0)
{
*--p = fill;
c--;
}
*/
}
if (minus)
gfx_putc('-');
gfx_puts(p);
}