From a50cfc5f1f7d5675ed27623db4b87469a48f4db4 Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Sat, 21 Sep 2019 16:31:52 +0200 Subject: Boot: Bump our requested resolution to 1280x1024 This makes bare metal boots a bit nicer on machines where that mode is available to us. --- Kernel/Boot/boot.S | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Kernel/Boot/boot.S b/Kernel/Boot/boot.S index 10892fc4e1..bc840d72ef 100644 --- a/Kernel/Boot/boot.S +++ b/Kernel/Boot/boot.S @@ -22,8 +22,8 @@ /* for MULTIBOOT_VIDEO_MODE */ .long 0x00000000 /* mode_type */ -.long 1024 /* width */ -.long 768 /* height */ +.long 1280 /* width */ +.long 1024 /* height */ .long 32 /* depth */ .section .stack, "aw", @nobits -- cgit v1.2.3