05.07.2015, 06:16
I got this warning on this lines:
pawn Код:
for(new i = 0;i < MAX_MAPS; i++)
{
if(!m_info[i][mLoaded])continue;
if(g == 1)strcat(dstr, "\n");
((i+1) % 2) ? strcat(dstr, "{00f0f0}") : strcat(dstr, "{f0f000}");//Warning at this line
strcat(dstr, m_info[i][mName]);
g = 1;
}
and
for(new i = 0; i < rows; i++)
{
cache_get_row(i, 0, temp, db);
if(GetSlot(temp) != -1)continue;
((i+1) % 2) ? strcat(dstr, "{00f0f0}") : strcat(dstr, "{f0f000}");//Warning at this line
strcat(dstr, temp);
if(i < rows-1)strcat(dstr, "\n");
g = 1;
}