09.07.2010, 14:28
This is one of the examples:
The brackets aren't lined up accordingly. Line them up and the warnings will disappear.
AMG, don't encourage lazy coding!
pawn Код:
if(PlayerInfo[i][pCarTime] > 0)
{
if(PlayerInfo[i][pCarTime] <= 0)
{
PlayerInfo[i][pCarTime] = 0;
}
else
{
PlayerInfo[i][pCarTime] -= 1;
}
}
AMG, don't encourage lazy coding!