write to location

This commit is contained in:
Luka Jankovic 2025-07-26 01:51:24 +02:00
parent fe34c61b12
commit d273544702
3 changed files with 19 additions and 8 deletions

View file

@ -25,4 +25,6 @@ void kubo_command_bar_render(int x, int y, int font_size) {
x += MeasureText(cmd, font_size);
x += 2;
DrawRectangle(x, y, MeasureText("x", font_size), font_size, WHITE);
free(cmd);
}