27.08.2015, 11:03
The problem is "COL_WHITE". I'm guessing that you using this to embed colors into text, so your #define would look like this:
Whereas you need something like this:
Then replace all 'COL_WHITE' with 'COLOR_WHITE'. Basically, you're using a string where you're meant to be using a hexadecimal/integer value.
pawn Код:
#define COL_WHITE "{FFFFFF}"
pawn Код:
#define COLOR_WHITE 0xFFFFFFFF