This commit is contained in:
2025-03-15 00:02:33 +03:00
parent 0ea8fc59ef
commit bacba9abf1
6 changed files with 3 additions and 37 deletions
+1 -6
View File
@@ -44,11 +44,6 @@ void terminal_putentryat(char c, uint8_t color, size_t x, size_t y)
void terminal_putchar(char c)
{
/*if(c == '\n')
{
terminal_column = 0;
terminal_row++;
}*/
if(c != '\n')
terminal_putentryat(c, terminal_color, terminal_column, terminal_row);
@@ -61,7 +56,7 @@ void terminal_putchar(char c)
if(terminal_row >= VGA_HEIGHT){
terminal_row = 0;
}
if(c == '\n')
{
terminal_column = 0;