From 80519e78aaa2d91386c8bf594c6dc96c6bb67d6f Mon Sep 17 00:00:00 2001 From: Augustin Cavalier Date: Fri, 17 Sep 2021 15:36:57 -0400 Subject: [PATCH] bootloader: Clarify comment in text_console.h. The following colors are "foreground colors only" not "foreground colors, only if". --- headers/private/kernel/boot/platform/generic/text_console.h | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/headers/private/kernel/boot/platform/generic/text_console.h b/headers/private/kernel/boot/platform/generic/text_console.h index 82d8720a68..02ee35c672 100644 --- a/headers/private/kernel/boot/platform/generic/text_console.h +++ b/headers/private/kernel/boot/platform/generic/text_console.h @@ -9,7 +9,7 @@ #include #include -// Standard 16 color palette. Common for BIOS and OpenFirmware. +// Standard 16 color palette. enum console_color { // foreground and background colors BLACK, @@ -20,8 +20,7 @@ enum console_color { PURPLE, BROWN, GRAY, - // foreground colors only if blinking is enabled (restriction applies - // to BIOS only) + // foreground colors only, if blinking is enabled (on bios_ia32) DARK_GRAY, BRIGHT_BLUE, BRIGHT_GREEN,