Quote Originally Posted by kung foo man View Post
Probably need to stringify right away then:

Code:
#define DRAW_WEAPON(_key, _name) DRAW_WEAPON_ITEM(#_key, #_name)
Doesn't work aswell

Starting to think that we can't use variables in macroses in macroses, because this code works:
PHP Code:
#ifndef DRAW_LINES_MAIN
#define DRAW_LINES_MAIN() \
    
DRAW_LINE(102 1000 0 446 1COLOR_LINE_DARK) \
    
DRAW_LINE(270 1010 0 1 268COLOR_LINE_DARK) \
#endif