diff options
author | Marvin Borner | 2020-04-25 18:33:37 +0200 |
---|---|---|
committer | Marvin Borner | 2020-04-25 18:33:37 +0200 |
commit | 71a111f7e6b71e0894b90e8dc1221b1ec4f84ab3 (patch) | |
tree | 78a8340f7909429d91f560ba2915959a4d313a1b /src/kernel/graphics/vesa.c | |
parent | 30601e14f216488ee3a36dc44ab0ed56da7ccdb2 (diff) |
Added indirect pointers - re-enabled font :)
I don't know why, but once there are multiple files on the drive the
kernel can only read one file.. I'll investigate this later.
Diffstat (limited to 'src/kernel/graphics/vesa.c')
-rw-r--r-- | src/kernel/graphics/vesa.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/kernel/graphics/vesa.c b/src/kernel/graphics/vesa.c index 853c503..d7bc42a 100644 --- a/src/kernel/graphics/vesa.c +++ b/src/kernel/graphics/vesa.c @@ -200,7 +200,6 @@ void set_optimal_resolution() vesa_clear(); vesa_set_color(vesa_blue); - printf(vga_buffer); vesa_set_color(default_text_color); info("Successfully switched to video mode!"); @@ -369,4 +368,4 @@ void vesa_set_color(uint32_t color) { vesa_convert_color(terminal_color, color); vesa_convert_color(terminal_background, default_background_color); -}
\ No newline at end of file +} |