From 8798a7cc19c54f84692ed6231ea6fd80b430240d Mon Sep 17 00:00:00 2001 From: Clownacy Date: Wed, 22 Jan 2020 23:52:31 +0000 Subject: [PATCH] Add the RGB macro to the windows.h wrapper --- src/WindowsWrapper.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/WindowsWrapper.h b/src/WindowsWrapper.h index f27d8e3f..6a00b9dc 100644 --- a/src/WindowsWrapper.h +++ b/src/WindowsWrapper.h @@ -2,6 +2,8 @@ #include +#define RGB(r,g,b) ((r) | ((g) << 8) | ((b) << 16)) + typedef bool BOOL; #define FALSE false