diff options
author | Andreas Kling <awesomekling@gmail.com> | 2019-09-21 16:31:52 +0200 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2019-09-21 16:31:52 +0200 |
commit | a50cfc5f1f7d5675ed27623db4b87469a48f4db4 (patch) | |
tree | 969085831ce7c2a3106b94bcabc706fda4fc551e | |
parent | ceb5508fea6f98b6adaec70bc25c184200679a49 (diff) | |
download | serenity-a50cfc5f1f7d5675ed27623db4b87469a48f4db4.zip |
Boot: Bump our requested resolution to 1280x1024
This makes bare metal boots a bit nicer on machines where that mode
is available to us.
-rw-r--r-- | Kernel/Boot/boot.S | 4 |
1 files 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 |