From 5c0e0e5a049fa8ef09e0ce92cb4adb6ecee4b9f1 Mon Sep 17 00:00:00 2001 From: Ken Swenson Date: Thu, 24 Mar 2016 14:32:33 -0400 Subject: [PATCH] Fix purple blue --- source/draw.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/draw.h b/source/draw.h index ffae9f5..6903230 100644 --- a/source/draw.h +++ b/source/draw.h @@ -19,7 +19,7 @@ #define COLOR_RED RGB(0xFF, 0x00, 0x00) #define COLOR_GREEN RGB(0x00, 0xFF, 0x00) -#define COLOR_BLUE RGB(0xFF, 0x00, 0xFF) +#define COLOR_BLUE RGB(0x00, 0x00, 0xFF) #define COLOR_YELLOW RGB(0xFF, 0xFF, 0x00) #define COLOR_CYAN RGB(0xFF, 0x00, 0xFF)