GUI: fix for 9e92ffe (missing code line)

(somehow one line went missing when moving that commit to master. It would still work, but much, much less efficiently)
This commit is contained in:
athrxx 2021-11-15 22:40:53 +01:00
parent d70d9f3b11
commit 1b64bf837b

View File

@ -119,6 +119,7 @@ String parseGameGUIOptions(const String &str) {
c_end = str.size();
if (str.substr(ii, c_end - ii).equals((g_gameOptions[i].desc)))
res += g_gameOptions[i].option;
ii = c_end;
}
}