Results 1 to 10 of 14

Thread: Strange things in menus

Hybrid View

Previous Post Previous Post   Next Post Next Post
  1. #1
    Assadministrator kung foo man's Avatar
    Join Date
    Jun 2012
    Location
    trailerpark
    Posts
    2,011
    Thanks
    2,102
    Thanked 1,084 Times in 753 Posts
    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)
    timescale 0.01

  2. The Following User Says Thank You to kung foo man For This Useful Post:

    kubislav23 (13th June 2017)

  3. #2
    Private Lonsofore's Avatar
    Join Date
    Oct 2016
    Posts
    86
    Thanks
    82
    Thanked 38 Times in 25 Posts
    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

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •