tim_draw_lot -> tim_fill

This commit is contained in:
2026-01-12 22:56:49 +05:00
parent 7a3bde6321
commit 3fb220ff54
4 changed files with 6 additions and 6 deletions

View File

@@ -360,8 +360,8 @@ void tim_draw_row(TimCell cell, i32 x, i32 y, i32 w);
// draw column of cells
void tim_draw_col(TimCell cell, i32 x, i32 y, i32 h);
// fill lot (area) of cells
void tim_draw_lot(TimCell cell, i32 x, i32 y, i32 w, i32 h);
// fill area with cells
void tim_fill(TimCell cell, i32 x, i32 y, i32 w, i32 h);
// draw string to line, tags potential wide characters
void tim_draw_str(cstr s, i32 x, i32 y, i32 w, u8 fg, u8 bg);