This doesn't compile for me:
PHP Code:
if( !( iFlags & FL_ONGROUND )
#if defined DUCK
&& ( iFlags & FL_DUCKING ) )
#else
&& get_user_button( iToucher ) & IN_USE )
#endif
But the exactly same code, like this, does:
PHP Code:
#if defined DUCK
if( !( iFlags & FL_ONGROUND )
&& ( iFlags & FL_DUCKING ) )
#else
if( !( iFlags & FL_ONGROUND )
&& get_user_button( iToucher ) & IN_USE )
#endif
__________________
Selling tons of my own private works.
Accepting paid work for clans and communities.
Don't hesitate to contact me.