Fixed indentation

This commit is contained in:
sctt 2022-03-16 19:09:29 +01:00 committed by GitHub
parent 742cb95081
commit 87ab2348d0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -102,13 +102,13 @@ bool OpenMaps(IStorage *pStorage, const char pMapNames[3][64], CDataFileReader I
}
}
if(!OutputMap.Open(pStorage, pMapNames[2], IStorage::TYPE_ABSOLUTE))
{
dbg_msg("map_replace_area", "Error: unable to open map '%s'", pMapNames[2]);
return false;
}
return true;
if(!OutputMap.Open(pStorage, pMapNames[2], IStorage::TYPE_ABSOLUTE))
{
dbg_msg("map_replace_area", "Error: unable to open map '%s'", pMapNames[2]);
return false;
}
return true;
}
bool CompareLayers(const char pMapNames[3][64], CDataFileReader InputMaps[2])
@ -271,4 +271,4 @@ void SaveOutputMap(CDataFileReader InputMaps[2], CDataFileWriter& OutputMap)
}
OutputMap.Finish();
}
}