pawn Код:
switch(var) {
case 0: {
new tmp[3][32];
}
case 1: {
new tmp[5][16];
}
}
This gives me warning about redefinition of symbol tmp. This would make sense if tmp value was exactly the same, but for diffrent cases I need diffrent string-array size. How can I solve this?