Fixed compile issue in Unreal Engine 5

This commit is contained in:
Jordon Brooks 2024-07-08 21:55:13 +01:00
parent 5fac24b973
commit 98fb068e29
Signed by: jordon
GPG key ID: DBD9758CD53E786A

View file

@ -129,7 +129,7 @@ bool UHarmonyLinkGraphics::LoadSection(FConfigFile* ConfigFile, const TPair<EPro
#if (ENGINE_MAJOR_VERSION >= 5)
Section = ConfigFile->FindSection(*SectionName.ToString())
Section = ConfigFile->FindSection(*SectionName.ToString());
#elif (ENGINE_MAJOR_VERSION == 4) && (ENGINE_MINOR_VERSION >= 27)
Section = ConfigFile->FindOrAddSection(*SectionName.ToString());
#else