10.03.2018, 10:16
Quote:
Does it affect bad on your gamemode, if you for example have wrong numbers of cells?
|
Here's a simple compare:
1- BAD:
PHP Code:
new PlayerName[128];
GetPlayerName(playerid, PlayerName, sizeof(PlayerName));
PHP Code:
new PlayerName[MAX_PLAYER_NAME];
GetPlayerName(playerid, PlayerName, sizeof(PlayerName));
It does, accumulating the unused variables/arrays building up is going to leave you with a big compiled file and longer time to compile, why?