From e3161301fbe5dbf5c0aa142f55163795258ecc87 Mon Sep 17 00:00:00 2001 From: Jeremy Soller Date: Tue, 27 Dec 2016 20:47:19 -0700 Subject: [PATCH] Default to choosing a resolution --- bootloader/x86_64/config.asm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bootloader/x86_64/config.asm b/bootloader/x86_64/config.asm index a0fee01..8e3b220 100644 --- a/bootloader/x86_64/config.asm +++ b/bootloader/x86_64/config.asm @@ -4,8 +4,8 @@ USE16 align 512, db 0 config: - .xres: dw 1024 - .yres: dw 768 + .xres: dw 0 + .yres: dw 0 times 512 - ($ - config) db 0