- Repair incorrect method call to IniFile class from 6576adb80b.

* Fixes #473.
This commit is contained in:
Mitchell Richters 2021-07-16 23:01:07 +10:00
parent a614f741fd
commit 76554f5f4d

View file

@ -132,7 +132,7 @@ static const char* DefFile(void)
for (int j = 1; j <= 6; j++)
{
FStringf key("Episode%d", j);
if (inif.FindKey(key))
if (inif.SectionExists(key))
{
found = i;
break;