Tag Mismatch
#1

Hello . i have tryd so many ways to fix this but didn't found help yet.

pawn Код:
public LoadDonatorList()
{
    new arrCoords[2][64];
    new strFromFile2[256];
    new File: file = fopen("DonatorList.cfg", io_read);
    if (file)
    {
        new idx;
        while (idx < sizeof(DonatorList))
        {
            fread(file, strFromFile2);
            split(strFromFile2, arrCoords, '|');
            strmid(DonatorList[idx][Name], arrCoords[0], 0, strlen(arrCoords[0]), 255);
            DonatorList[idx][Amount] = floatstr(arrCoords[1]); // < --- Line 17017 !!
            idx++;
        }
        fclose(file);
    }
    return 1;
}
Error

Код:
(17017) : warning 213: tag mismatch
if someone have time to help , i am very thanks then.
Reply


Messages In This Thread
Tag Mismatch - by titanak - 14.05.2011, 14:20
Re: Tag Mismatch - by CyNiC - 14.05.2011, 14:22
Re: Tag Mismatch - by titanak - 14.05.2011, 14:22
Re: Tag Mismatch - by MadeMan - 14.05.2011, 14:29
Re: Tag Mismatch - by Typhome - 14.05.2011, 14:31
Re: Tag Mismatch - by titanak - 14.05.2011, 14:56

Forum Jump:


Users browsing this thread: 1 Guest(s)