06.10.2011, 05:23
(
Последний раз редактировалось Soap_MacTavish; 06.10.2011 в 05:59.
)
The compiler complains about variables being shadowed, what does this mean?
Sorry for my bad English
Sorry for my bad English
new x;
OnPlayerConnect(playerid)
{
new x; // this one is being shadowed and will not work properly
x = playerid;
return 1;
}