Quote Originally Posted by kung foo man View Post
PHP Code:

#ifndef DRAW_WEAPON 
#define DRAW_WEAPON(_key, _name) \ 
    
DRAW_WEAPON_ITEM(_key_name) \ 
#endif 
Last \ drags in the #endif and probably causes whatever kind of syntax error, which must be in your console somewhere (shift+tilde in menu)
Doesn't work with these both cases:
PHP Code:
#ifndef DRAW_WEAPON
#define DRAW_WEAPON(_key, _name) \
    
DRAW_WEAPON_ITEM(_key_name)
#endif 
PHP Code:
#ifndef DRAW_WEAPON
#define DRAW_WEAPON(_key, _name) DRAW_WEAPON_ITEM(_key, _name)
#endif 
Offtop: where are you? haven't seen you in IRC for a long time