From 6eeff2258864cd221234841b9c413c275a422639 Mon Sep 17 00:00:00 2001 From: igor Date: Tue, 17 Feb 2026 10:27:16 -0800 Subject: [PATCH] Added some comments. --- main.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/main.c b/main.c index d4f0790..31991be 100644 --- a/main.c +++ b/main.c @@ -112,6 +112,7 @@ typedef enum activity_type { activity_type_COUNT } activity_type; +// TODO: Rename to something shorter, maybe ommit the "repreresentation." char *activity_type_string_representation[activity_type_COUNT] = { "Other", "Studying", @@ -122,6 +123,7 @@ char *activity_type_string_representation[activity_type_COUNT] = { "Reading" }; +// TODO: Rename to something shorter, maybe ommit the "repreresentation." Color activity_type_color_representation[activity_type_COUNT] = { RED, GREEN,