ignore section names in tlac config files

This commit is contained in:
somewhatlurker
2019-07-10 03:12:58 +10:00
parent cbc018dd84
commit 233ef7869e
@@ -67,6 +67,6 @@ namespace TLAC::FileSystem
bool ConfigFile::IsComment(const std::string &line)
{
return line.size() <= 0 || line[0] == '#' || line._Starts_with("//");
return line.size() <= 0 || line[0] == '#' || line[0] == '[' || line._Starts_with("//");
}
}