16.12.2010, 16:35
Im getting this error
error 075: input line too long (after substitutions)
on this line:
So what should i do?I never got this error before!
error 075: input line too long (after substitutions)
on this line:
pawn Код:
stock SaveFuelMessage(const string[])
{
if(SavingToLog == 1)
{
new log[128], File:CFile;
format(log,sizeof(log),"%s\n",string);
CFile = fopen("Fuel_Log.sav",io_append);
fwrite(CFile,log);
fclose(CFile);
}
}