10.04.2017, 17:09
gamemodes\GameMode.pwn(21255) : warning 219: local variable "string" shadows a variable at a preceding level
Lines:
Here is the forward
If anyone know how can I fix it, please tell me in reply...
Lines:
Код:
(The Warning Line)public LoginLog(string[]) { new entry[256]; format(entry, sizeof(entry), "%s\n",string); new File:hFile; hFile = fopen("login.log", io_append); fwrite(hFile, entry); fclose(hFile); }
Код:
forward LoginLog(string[]);