fix misplaced curly brace

This commit is contained in:
ChrisMiuchiz 2019-10-24 18:58:10 -04:00
parent acb4ce7729
commit 51ba73da0f
1 changed files with 23 additions and 22 deletions

View File

@ -95,6 +95,7 @@ extern "C" void StartMods() {
exit(1); exit(1);
} }
} }
}
// Run Initialization routines on all mods // Run Initialization routines on all mods
for (DLL* dll: modDLLs) { for (DLL* dll: modDLLs) {
@ -106,7 +107,7 @@ extern "C" void StartMods() {
((void(*)())dll->ModInitialize)(); ((void(*)())dll->ModInitialize)();
} }
} }
}
if (hSelf) PrintLoadedMods(); if (hSelf) PrintLoadedMods();
return; return;
} }