From 65751aad16ff65a0b0c7d11e4ce410a65a32082c Mon Sep 17 00:00:00 2001 From: Marcus Overhagen Date: Wed, 26 Dec 2007 22:30:41 +0000 Subject: [PATCH] Increased keypress detection time to 750ms. The old 50ms value never worked for me. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@23166 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/system/boot/platform/bios_ia32/start.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/system/boot/platform/bios_ia32/start.c b/src/system/boot/platform/bios_ia32/start.c index 09c78411d2..2b1aeaec35 100644 --- a/src/system/boot/platform/bios_ia32/start.c +++ b/src/system/boot/platform/bios_ia32/start.c @@ -122,8 +122,8 @@ _start(void) cpu_init(); mmu_init(); - spin(50000); - // wait a bit to give the user the opportunity to press a key + // wait a bit to give the user the opportunity to press a key + spin(750000); // reading the keyboard doesn't seem to work in graphics mode (maybe a bochs problem) sBootOptions = check_for_boot_keys();