Posts: 599
Threads: 48
Joined: May 2016
Quote:
Originally Posted by Konstantinos
In Log function, it should be like:
pawn Код:
new File: fhandle = fopen(...);
if (fhandle) // file was opened { // file functions.. fclose(fhandle); }
Most people do it like this (which is wrong):
pawn Код:
new File: fhandle = fopen(...);
// file functions.. fclose(fhandle);
|
What do u mean ?