aboutsummaryrefslogtreecommitdiff
path: root/src/kernel/graphics
diff options
context:
space:
mode:
authorMarvin Borner2020-01-05 13:34:37 +0100
committerMarvin Borner2020-01-05 13:34:37 +0100
commit9390f6408884d0631e5d9865150851d53e2d6aec (patch)
tree2a845c735eb5f44691175f6407f1517c05b50b66 /src/kernel/graphics
parent527d8bfeffa41086ad4e0c257b27e8c916fd514c (diff)
I really need to understand monospaced fonts lel
Aka: Removed font stretchiness :)
Diffstat (limited to 'src/kernel/graphics')
-rw-r--r--src/kernel/graphics/vesa.c12
1 files changed, 6 insertions, 6 deletions
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') {