30.09.2016, 15:44
In Log function, it should be like:
Most people do it like this (which is wrong):
pawn Код:
new File: fhandle = fopen(...);
if (fhandle) // file was opened
{
// file functions..
fclose(fhandle);
}
pawn Код:
new File: fhandle = fopen(...);
// file functions..
fclose(fhandle);