19.01.2016, 19:41
alguien me puede ayudar a hacer que este "warning" no aparezca..?
Код:
stock GetVehicleDescompilerValue(playerid, pvInfo: enum_tt, text[], type)
{
new string[MAX_PLAYERVEHICLES][40], i;
explode(string, text, ",");
while(i < MAX_PLAYERVEHICLES)
{
if(strcmp(string[i], "", true) != 0)
{
switch(type)
{
case 'i','d': PlayerVehicleInfo[playerid][i][enum_tt] = strval(string[i]);
// =============> case 'f': PlayerVehicleInfo[playerid][i][enum_tt] = floatstr(string[i]); // TAG MISMATCH
case 's': format(PlayerVehicleInfo[playerid][i][enum_tt], MAX_PLAYER_NAME, "%s", string[i]);
}
}
else {break;}
i++;
}
}


