24.12.2012, 12:55
the problem is Y_Ini
Not work:
new INIf = INI_Open("ciao.txt");
INI_WriteInt(xf, "ciao", 50);
INI_Close(xf);
Work:
new File:f = fopen("test.txt", io_append);
fwrite(f, "Ciao come va?");
fclose(f);
before I prepare to change file system, there is a solution already widespread?
Not work:
new INIf = INI_Open("ciao.txt");
INI_WriteInt(xf, "ciao", 50);
INI_Close(xf);
Work:
new File:f = fopen("test.txt", io_append);
fwrite(f, "Ciao come va?");
fclose(f);
before I prepare to change file system, there is a solution already widespread?