diff options
Diffstat (limited to 'src/kernel/graphics/vesa.c')
-rw-r--r-- | src/kernel/graphics/vesa.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/kernel/graphics/vesa.c b/src/kernel/graphics/vesa.c index e8ef0e0..f116146 100644 --- a/src/kernel/graphics/vesa.c +++ b/src/kernel/graphics/vesa.c @@ -184,11 +184,11 @@ void set_optimal_resolution() uint32_t fb_size = vbe_width * vbe_height * vbe_bpl; cursor_buffer = kmalloc(fb_size); - for (uint32_t z = 0; z < fb_size; z += 4096) { - paging_map((uint32_t)fb + z, (uint32_t)fb + z, PT_PRESENT | PT_RW | PT_USED); - paging_map((uint32_t)cursor_buffer + z, (uint32_t)cursor_buffer + z, - PT_PRESENT | PT_RW | PT_USED); - } + /* for (uint32_t z = 0; z < fb_size; z += 4096) { */ + /* paging_map((uint32_t)fb + z, (uint32_t)fb + z, PT_PRESENT | PT_RW | PT_USED); */ + /* paging_map((uint32_t)cursor_buffer + z, (uint32_t)cursor_buffer + z, */ + /* PT_PRESENT | PT_RW | PT_USED); */ + /* } */ if (vbe_height > 1440) vesa_set_font(32); @@ -368,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 +} |