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

@ -81,7 +81,7 @@ extern "C" void StartMods() {
}
// Ensure version compatibility
for (DLL* dll: modDLLs) {
for (DLL* dll : modDLLs) {
int majorVersion = ((int(*)())dll->ModMajorVersion)();
int minorVersion = ((int(*)())dll->ModMinorVersion)();
if (majorVersion != MOD_MAJOR_VERSION) {
@ -95,6 +95,7 @@ extern "C" void StartMods() {
exit(1);
}
}
}
// Run Initialization routines on all mods
for (DLL* dll: modDLLs) {
@ -106,7 +107,7 @@ extern "C" void StartMods() {
((void(*)())dll->ModInitialize)();
}
}
}
if (hSelf) PrintLoadedMods();
return;
}