From cd70295716f49f14abd5e914246cb53d86ae7cd8 Mon Sep 17 00:00:00 2001 From: "K. Lange" Date: Wed, 9 May 2018 19:05:33 +0900 Subject: [PATCH] Eh, default to 1440x900 --- boot/cstuff.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/boot/cstuff.c b/boot/cstuff.c index 10e6bbef..8cbfdba7 100644 --- a/boot/cstuff.c +++ b/boot/cstuff.c @@ -394,9 +394,9 @@ int kmain() { if (boot_mode == 0) { if (_debug) { - multiboot_header.cmdline = (uintptr_t)"logtoserial=3 vid=auto,1024,768 root=/dev/ram0,nocache start=--migrate _start=session"; + multiboot_header.cmdline = (uintptr_t)"logtoserial=3 vid=auto,1440,900 root=/dev/ram0,nocache start=--migrate _start=session"; } else { - multiboot_header.cmdline = (uintptr_t)"vid=auto,1024,768 root=/dev/ram0,nocache start=--migrate _start=session"; + multiboot_header.cmdline = (uintptr_t)"vid=auto,1440,900 root=/dev/ram0,nocache start=--migrate _start=session"; } } else if (boot_mode == 1) { if (_debug) {