launcher: fix and improve config group boxes

This commit is contained in:
somewhatlurker
2019-10-06 00:35:09 +10:00
parent ab2e538388
commit 41d7255f1e
2 changed files with 7 additions and 6 deletions
@@ -52,7 +52,7 @@ namespace PluginConfig
for (int i = 0; i < in.len; i++)
{
// basic check for validity
if (in.options[i].data == nullptr)
if (in.options[i].data == nullptr && in.options[i].cfgType != CONFIG_GROUP_END)
break;
outvec.push_back(GetConfigOption(in.options[i]));