From f687c5f68b18077acb4762df4f75170f619a006c Mon Sep 17 00:00:00 2001 From: Clownacy Date: Wed, 22 Jan 2020 23:50:27 +0000 Subject: [PATCH] Remove the RGB macro This is a leftover part of the window.h emulator in that got moved to the portable branch --- src/Draw.h | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/Draw.h b/src/Draw.h index 8c4b625d..b4c38db5 100644 --- a/src/Draw.h +++ b/src/Draw.h @@ -2,10 +2,6 @@ #include "WindowsWrapper.h" -#ifndef RGB -#define RGB(r,g,b) ((r) | ((g) << 8) | ((b) << 16)) -#endif - extern RECT grcGame; extern RECT grcFull;