From be936e9bcf0d90c1197e11d0b6c5a41b8735bffd Mon Sep 17 00:00:00 2001 From: Rob Loach Date: Tue, 14 Mar 2017 06:09:46 -0400 Subject: [PATCH] Fix type of font colors --- configuration.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/configuration.h b/configuration.h index 47b72414e5..35166310da 100644 --- a/configuration.h +++ b/configuration.h @@ -189,9 +189,9 @@ typedef struct settings { unsigned shader_pipeline; char font[PATH_MAX_LENGTH]; - int font_color_red; - int font_color_green; - int font_color_blue; + unsigned font_color_red; + unsigned font_color_green; + unsigned font_color_blue; unsigned scale_factor; unsigned alpha_factor; unsigned theme;