From cb1183751aa25069560923948a0a6de300e6ac9c Mon Sep 17 00:00:00 2001 From: Sam Anthony Date: Fri, 2 May 2025 12:22:30 -0400 Subject: color.h --- renderer.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'renderer.c') diff --git a/renderer.c b/renderer.c index c40fcf8..6cda9d1 100644 --- a/renderer.c +++ b/renderer.c @@ -7,6 +7,7 @@ #include #include "microui.h" #include "renderer.h" +#include "color.h" #define expect(x) do { \ @@ -41,7 +42,7 @@ enum { CIRCLE_RADIUS = 16 }; static const char FONT[] = "font/P052-Roman.ttf"; enum font { FONTSIZE = 14, }; -static const mu_Color bg = {255, 255, 255, 255}; +static const mu_Color bg = WHITE; static const char button_map[256] = { [SDL_BUTTON_LEFT & 0xff] = MU_MOUSE_LEFT, -- cgit v1.2.3