01.10.2015, 17:40
Likely has nothing to do with that line. It means you are doing something stupid like:
Although it may not immediately be visible to the naked eye and may manifest itself like:
Which is always "non-zero" and therefore always "true".
For the latter case, resort to the preprocessor directive, #if.
pawn Код:
if(1 == 1)
pawn Код:
#define SOMETHING 1
if(SOMETHING == 1)
For the latter case, resort to the preprocessor directive, #if.