24.07.2015, 23:13
Quote:
What's wrong here? The code works though.
pawn Код:
Код:
warning 206: redundant test: constant expression is non-zero |
pawn Код:
#define CheckIfUpper(%0) (64 < %0 && %0 < 94)
public OnPlayerConnect(playerid)
{
new a = 'A';
if(CheckIfUpper(a)) printf ("It's upper!");
}