fix: autocomplete working again (ratio starnakin) and clean some stuff

This commit is contained in:
2024-12-19 11:03:09 +01:00
parent 4028372475
commit 61debdcb85
4 changed files with 682 additions and 51 deletions

View File

@ -21,7 +21,7 @@ struct screen {
uint32_t bg_color;
uint16_t buffer[VGA_WIDTH * VGA_HEIGHT];
uint32_t default_color;
struct icon *backgound;
struct icon *background;
struct font *font;
char line[256];
};
@ -66,4 +66,4 @@ void terminal_set_default_bg_color(uint32_t fg_color);
void terminal_change_default_fg_color(uint32_t color);
uint32_t terminal_get_default_color(void);
uint8_t terminal_get_char(int column, int row);
void terminal_remove_last_char(void);
void terminal_remove_last_char(void);