Changed activity color and made start window bigger.

This commit is contained in:
2026-02-15 11:49:03 -08:00
parent 7b4b1904c7
commit 23c12c7bf8

6
main.c
View File

@@ -142,7 +142,7 @@ char *activity_type_string_representation[activity_type_COUNT] = {
}; };
Color activity_type_color_representation[activity_type_COUNT] = { Color activity_type_color_representation[activity_type_COUNT] = {
RED, BLUE, ORANGE, GREEN, PURPLE, YELLOW RED, BLUE, ORANGE, GREEN, PURPLE, BROWN
}; };
// TODO: String representation. // TODO: String representation.
@@ -283,8 +283,8 @@ int main(int argc, char *argv[])
U64 upper_bound_s = lower_bound_s + 86400; U64 upper_bound_s = lower_bound_s + 86400;
// U64 upper_bound_s = lower_bound_s + 3600; // U64 upper_bound_s = lower_bound_s + 3600;
S32 window_w = 800; S32 window_w = 900;
S32 window_h = 450; S32 window_h = 500;
InitWindow(window_w, window_h, "Time Tracker"); InitWindow(window_w, window_h, "Time Tracker");
SetWindowState(FLAG_MSAA_4X_HINT | FLAG_WINDOW_RESIZABLE); SetWindowState(FLAG_MSAA_4X_HINT | FLAG_WINDOW_RESIZABLE);