I have tried variations of trying to fix this but maybe I am just not seeing something. The warning is Warning: Loose indentation on line 53
Line 53 is... fclose(f); at the end of the part of the code.
PHP Code:
{
new Data[160]
new Map[32]
new Sound[64];
new Duration[32];
fgets(f, Data, 160);
parse(Data, Map, 20, Sound, 64, Duration, 32);
if(equali(gMap, Map) && strlen(Sound) > 0 && strlen(Duration) > 0)
{
gSound = Sound
gDuration = Duration
gFoundMap = true;
return;
}
}
fclose(f);
}
Does that mean I have an extra } or that fclose(f); isnt in the correct place?
__________________