mirror of
https://github.com/ZDoom/raze-gles.git
synced 2025-01-14 03:40:50 +00:00
- Repair incorrect method call to IniFile
class from 6576adb80b
.
* Fixes #473.
This commit is contained in:
parent
a614f741fd
commit
76554f5f4d
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue