Index: trunk/i386/boot2/mboot.c =================================================================== --- trunk/i386/boot2/mboot.c (revision 925) +++ trunk/i386/boot2/mboot.c (revision 926) @@ -345,13 +345,6 @@ return bootdevice; } -enum { - kReturnKey = 0x0d, - kEscapeKey = 0x1b, - kBackspaceKey = 0x08, - kASCIIKeyMask = 0x7f -}; - // This is the meat of our implementation. It grabs the boot device from // the multiboot_info and returns it as is. If it fails it returns // BAD_BOOT_DEVICE. We can call an awful lot of libsa and libsaio but Index: trunk/i386/boot2/gui.h =================================================================== --- trunk/i386/boot2/gui.h (revision 925) +++ trunk/i386/boot2/gui.h (revision 926) @@ -41,7 +41,7 @@ enum { kBackspaceKey = 0x08, kTabKey = 0x09, - kReturnKey = 0x0d, + kReturnKey = '\n', kEscapeKey = 0x1b, kUpArrowkey = 0x4800, kDownArrowkey = 0x5000,