04.09.2011, 14:24
Quote:
In most cases "unreachable code" is because there's a return 0; before the end return 1;
In this case there is not a return 0; at all. |
pawn Код:
SetGMToAwesome(.....
return 1;
}
return 1;//Here is the warning line
}