Removed some debug output, no longer panics to be able to read the output :)

git-svn-id: file:///srv/svn/repos/haiku/trunk/current@8050 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Axel Dörfler 2004-06-18 15:29:31 +00:00
parent c28f7b9932
commit d0c5d9f9a8

View File

@ -54,7 +54,6 @@ check_for_boot_keys(void)
uint32 options = 0;
while ((key.ax = check_for_key()) != 0) {
dprintf("pressed %lx\n", key.ax);
switch (key.code.ascii) {
case ' ':
options |= BOOT_OPTION_MENU;
@ -70,7 +69,6 @@ check_for_boot_keys(void)
}
dprintf("options = %ld\n", options);
panic("\n");
return options;
}