From a78eb02b828ffb8d0f0afcc4ff3cf4dac5a75c16 Mon Sep 17 00:00:00 2001 From: rexim Date: Tue, 2 Jul 2019 01:21:23 +0700 Subject: [PATCH] (#788) Additional work --- src/color.c | 2 +- src/game/level/level_editor/color_picker.c | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/src/color.c b/src/color.c index 7f50b2e4..24e50dc8 100644 --- a/src/color.c +++ b/src/color.c @@ -15,7 +15,7 @@ Color rgba(float r, float g, float b, float a) return result; } -/* TODO: hue is in degrees in 2019 */ +/* TODO: Should the Hue in HSLA representation be in degrees? */ Color hsla(float h, float s, float l, float a) { h = fmodf(h, 360.0f); diff --git a/src/game/level/level_editor/color_picker.c b/src/game/level/level_editor/color_picker.c index b1b86a37..636e44e3 100644 --- a/src/game/level/level_editor/color_picker.c +++ b/src/game/level/level_editor/color_picker.c @@ -50,6 +50,7 @@ int color_picker_read_from_line_stream(ColorPicker *color_picker, return 0; } +// TODO: Color Picker doesn't have any visual indication about the current color int color_picker_render(const ColorPicker *color_picker, Camera *camera) { -- 2.44.0