From 9390f6408884d0631e5d9865150851d53e2d6aec Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Sun, 5 Jan 2020 13:34:37 +0100 Subject: I really need to understand monospaced fonts lel Aka: Removed font stretchiness :) --- src/kernel/graphics/vesa.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'src/kernel/graphics/vesa.c') diff --git a/src/kernel/graphics/vesa.c b/src/kernel/graphics/vesa.c index 2b8dfef..a9b7f4c 100644 --- a/src/kernel/graphics/vesa.c +++ b/src/kernel/graphics/vesa.c @@ -298,17 +298,17 @@ void vesa_draw_char(char ch) draw += vbe_pitch; } - terminal_x += font_width + 2; + terminal_x += font_width; } else if (ch == '\n') { terminal_x = 0; - terminal_y += font_height + 2; + terminal_y += font_height; } else if (ch == '\t') { - terminal_x += 4 * (font_width + 2); + terminal_x += 4 * font_width; } if (terminal_x >= vbe_width) { terminal_x = 0; - terminal_y += font_height + 2; + terminal_y += font_height; } } @@ -318,10 +318,10 @@ void vesa_keyboard_char(char ch) terminal_background); if (ch == 0x08) { - if (terminal_x != 0) terminal_x -= font_width + 2; + if (terminal_x != 0) terminal_x -= font_width; text[strlen(text) - 1] = '\0'; } else if (ch == 0x09) { - terminal_x += 4 * (font_width + 2); + terminal_x += 4 * font_width; } else if (ch == '\r') { terminal_x = 0; } else if (ch == '\n') { -- cgit v1.2.3