From c0fc7e35191ca9edf13958e12c4eb79e5c49e21c Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Fri, 1 Nov 2019 01:42:55 +0100 Subject: Tried implementing better logging system --- src/kernel/graphics/vesa.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/kernel/graphics/vesa.h') diff --git a/src/kernel/graphics/vesa.h b/src/kernel/graphics/vesa.h index 3fcef24..8a16516 100644 --- a/src/kernel/graphics/vesa.h +++ b/src/kernel/graphics/vesa.h @@ -17,7 +17,7 @@ struct edid_data { uint8_t max_horizontal_size; uint8_t max_vertical_size; uint8_t gamma_factor; - uint8_t dpms_flags; + uint8_t dpms_flags; // power management features uint8_t chroma_information[10]; uint8_t timings_1; uint8_t timings_2; @@ -160,6 +160,7 @@ void vesa_set_color(uint32_t color); /** * An enum with vesa colors + * From https://github.com/joshdick/onedark.vim/ License: MIT */ enum vesa_color { vesa_black = 0x1d1f24, -- cgit v1.2.3