summaryrefslogtreecommitdiff
path: root/kernel/multiboot.c
diff options
context:
space:
mode:
authorMiguel <m.i@gmx.at>2018-09-11 12:07:07 +0200
committerMiguel <m.i@gmx.at>2018-09-11 12:07:07 +0200
commit892f64ac908a474159fa3a952f13b62004662c70 (patch)
tree9492dacf8a72a5f22232a83fd0b87606b7f61fb1 /kernel/multiboot.c
parent75f0977e41004511bd475ee75a24fd04db4ddc39 (diff)
screen checks if video or textmode, cpu private memory pages implemented
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 62583b2..7f45093 100644
--- a/kernel/multiboot.c
+++ b/kernel/multiboot.c
@@ -78,7 +78,7 @@ multiboot_information* multiboot_read(uint32_t eax, uint32_t ebx, bool silent)
if(info->flags&&1<<12)
{
- klog("[12] Framebuffer (w:%d h:%d bpp:%d) at addr=0x%08X",info->framebuffer_width,info->framebuffer_height,info->framebuffer_bpp,info->framebuffer_addr);
+ 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);
}
return info;