15.01.2013, 18:19
Well... I wanted to make my own function for absolute value and so I did... Now, the pawn compiler returned a warning saying:
Line 169 is the line return val;
Here is the code:
I wonder why?
Thanks
Код:
F:\ZGM.pwn(169) : warning 213: tag mismatch
Here is the code:
Код:
#include <a_samp> forward abs(Float:val); public abs(Float:val) { if(val < 0.0) { val = val * (-1.0); } return val; }
Thanks