05.05.2010, 22:00
Quote:
Originally Posted by scurky
Код:
../include/gl_common.inc(151) : warning 219: local variable "key" shadows a variable at a preceding level C:\Program Files\Rockstar Games\GTA San Andreas\pawno\include\KIHC.inc(97) : error 025: function heading differs from prototype C:\Program Files\Rockstar Games\GTA San Andreas\pawno\include\KIHC.inc(98) : error 021: symbol already defined: "strtok" C:\Program Files\Rockstar Games\GTA San Andreas\pawno\include\KIHC.inc(113) : error 047: array sizes do not match, or destination array is too small C:\Program Files\Rockstar Games\GTA San Andreas\pawno\include\KIHC.inc(120) : error 047: array sizes do not match, or destination array is too small C:\Program Files\Rockstar Games\GTA San Andreas\pawno\include\KIHC.inc(124) : error 047: array sizes do not match, or destination array is too small Pawn compiler 3.2.3664 Copyright © 1997-2006, ITB CompuPhase 5 Errors. |
Go to Pawno>Includes>Gl_Common and go to the bottem of the .inc and you should see a this
pawn Код:
stock IsKeyJustDown(key, newkeys, oldkeys)
{
if((newkeys & key) && !(oldkeys & key)) return 1;
return 0;
}
For the others, Go into The KIHC.inc and search "strtork" Delete everything that is stock strtok.
That should fix it.