10.03.2013, 15:06
pawn Код:
new array[5];
main()
{
new bool:charArray[sizeof(array) char]; // Line from which errors originate
}
Quote:
error 001: expected token: "]", but found "char" error 029: invalid expression, assumed zero error 029: invalid expression, assumed zero fatal error 107: too many error messages on one line Compilation aborted.Pawn compiler 3.2.3664 Copyright © 1997-2006, ITB CompuPhase 4 Errors. |
Fixed:
pawn Код:
new bool:charArray[(sizeof(array)) char];