Skip to content

Commit

Permalink
- Repair incorrect method call to IniFile class from 6576adb.
Browse files Browse the repository at this point in the history
* Fixes #473.
  • Loading branch information
mjr4077au committed Jul 17, 2021
1 parent e63ff28 commit 1916b8b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/games/blood/src/levels.cpp
Expand Up @@ -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;
Expand Down

0 comments on commit 1916b8b

Please sign in to comment.