summaryrefslogtreecommitdiff
path: root/kernel/multiboot.c
diff options
context:
space:
mode:
authorMiguel <m.i@gmx.at>2018-09-21 19:49:53 +0200
committerMiguel <m.i@gmx.at>2018-09-21 19:49:53 +0200
commit1e5f3a249d4d389f6f7747c8f26aaf8e2988d930 (patch)
treef3d81b0324d0a09595ad5737f8c167f8a7138686 /kernel/multiboot.c
parentd7086073d9cc2d6f9174731bf8d8fb907d5d99e7 (diff)
struggling with UEFI
Diffstat (limited to 'kernel/multiboot.c')
-rw-r--r--kernel/multiboot.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/multiboot.c b/kernel/multiboot.c
index ce97c0a..dccd3ce 100644
--- a/kernel/multiboot.c
+++ b/kernel/multiboot.c
@@ -79,7 +79,7 @@ multiboot_information* multiboot_read(uint32_t eax, uint32_t ebx, bool silent)
if(info->flags&&1<<12)
{
- klog("[12] Framebuffer (type=%d) (w:%d h:%d bpp:%d) at addr=0x%08X",info->framebuffer_type,info->framebuffer_width,info->framebuffer_height,info->framebuffer_bpp,info->framebuffer_addr);
+ klog("[12] Framebuffer (type=%d) (w:%d h:%d bpp:%d) (pitch: %d) at addr=0x%08X",info->framebuffer_type,info->framebuffer_width,info->framebuffer_height,info->framebuffer_bpp,info->framebuffer_pitch,info->framebuffer_addr);
}
return info;