ignore section names in tlac config files

This commit is contained in:
somewhatlurker
2019-07-10 03:12:58 +10:00
parent 4e12802f46
commit 6e4a4947c3
@@ -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("//");
}
}