From 76554f5f4dcaffb5b58714244760ce3d6bd8994b Mon Sep 17 00:00:00 2001 From: Mitchell Richters Date: Fri, 16 Jul 2021 23:01:07 +1000 Subject: [PATCH] - Repair incorrect method call to `IniFile` class from 6576adb80b91d9bad93a7d1ac27a25685590fdf4. * Fixes #473. --- source/games/blood/src/levels.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/games/blood/src/levels.cpp b/source/games/blood/src/levels.cpp index b9bc85867..aad3596ad 100644 --- a/source/games/blood/src/levels.cpp +++ b/source/games/blood/src/levels.cpp @@ -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;