From 5bc844649b120438833d359fb0e6e46e0a782fd2 Mon Sep 17 00:00:00 2001 From: Josh Holtrop Date: Mon, 19 Oct 2020 23:57:54 -0400 Subject: [PATCH] set desired framebuffer size to 1600x900x32 --- src/multiboot_header.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/multiboot_header.c b/src/multiboot_header.c index 93a0d44..c5352fd 100644 --- a/src/multiboot_header.c +++ b/src/multiboot_header.c @@ -7,6 +7,6 @@ struct { multiboot2_tag_t end_tag; } multiboot_header __attribute__((section(".multiboot"))) = { multiboot2_header_default(), - multiboot2_framebuffer_tag(0u, 0u, 0u), + multiboot2_framebuffer_tag(1600u, 900u, 32u), multiboot2_end_tag(), };