aboutsummaryrefslogtreecommitdiff
path: root/src/color.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/color.c')
-rw-r--r--src/color.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/color.c b/src/color.c
index b4f4a40..f167016 100644
--- a/src/color.c
+++ b/src/color.c
@@ -19,7 +19,7 @@ struct console_color colors[] = { //Standard VGA colors
{255, 255, 255, "37;1"}
};
-uint8_t rgb_avg(uint8_t R, uint8_t G, uint8_t B)
+uint8_t rgb_luminance(uint8_t R, uint8_t G, uint8_t B)
{
uint8_t ret;