Further reduce hekate size by streamlining about screen

This commit is contained in:
CTCaer
2021-05-11 10:11:31 +03:00
parent 21e6a0cf7e
commit 253de81a6b
2 changed files with 14 additions and 14 deletions

View File

@@ -77,7 +77,7 @@ void tui_pbar(int x, int y, u32 val, u32 fgcol, u32 bgcol)
x += 7 * gfx_con.fntsz;
for (int i = 0; i < (gfx_con.fntsz >> 3) * 6; i++)
for (u32 i = 0; i < (gfx_con.fntsz >> 3) * 6; i++)
{
gfx_line(x, y + i + 1, x + 3 * val, y + i + 1, fgcol);
gfx_line(x + 3 * val, y + i + 1, x + 3 * 100, y + i + 1, bgcol);