From 51ba73da0f6a0dbad7a46df1f8de357c4bdee91f Mon Sep 17 00:00:00 2001 From: ChrisMiuchiz Date: Thu, 24 Oct 2019 18:58:10 -0400 Subject: [PATCH] fix misplaced curly brace --- CubeModLoader/main.cpp | 45 +++++++++++++++++++++--------------------- 1 file changed, 23 insertions(+), 22 deletions(-) diff --git a/CubeModLoader/main.cpp b/CubeModLoader/main.cpp index bc48972..361c0e4 100644 --- a/CubeModLoader/main.cpp +++ b/CubeModLoader/main.cpp @@ -81,32 +81,33 @@ extern "C" void StartMods() { } // Ensure version compatibility + for (DLL* dll : modDLLs) { + int majorVersion = ((int(*)())dll->ModMajorVersion)(); + int minorVersion = ((int(*)())dll->ModMinorVersion)(); + if (majorVersion != MOD_MAJOR_VERSION) { + sprintf(msg, "%s has major version %d but requires %d.\n", dll->fileName.c_str(), majorVersion, MOD_MAJOR_VERSION); + Popup("Error", msg); + exit(1); + + if (minorVersion > MOD_MINOR_VERSION) { + sprintf(msg, "%s has minor version %d but requires %d or lower.\n", dll->fileName.c_str(), minorVersion, MOD_MINOR_VERSION); + Popup("Error", msg); + exit(1); + } + } + } + + // Run Initialization routines on all mods for (DLL* dll: modDLLs) { - int majorVersion = ((int(*)())dll->ModMajorVersion)(); - int minorVersion = ((int(*)())dll->ModMinorVersion)(); - if (majorVersion != MOD_MAJOR_VERSION) { - sprintf(msg, "%s has major version %d but requires %d.\n", dll->fileName.c_str(), majorVersion, MOD_MAJOR_VERSION); - Popup("Error", msg); - exit(1); + ((void(*)())dll->ModPreInitialize)(); + } - if (minorVersion > MOD_MINOR_VERSION) { - sprintf(msg, "%s has minor version %d but requires %d or lower.\n", dll->fileName.c_str(), minorVersion, MOD_MINOR_VERSION); - Popup("Error", msg); - exit(1); - } - } - - // Run Initialization routines on all mods - for (DLL* dll: modDLLs) { - ((void(*)())dll->ModPreInitialize)(); - } - - for (DLL* dll: modDLLs) { - if (dll->ModInitialize) { - ((void(*)())dll->ModInitialize)(); - } + for (DLL* dll: modDLLs) { + if (dll->ModInitialize) { + ((void(*)())dll->ModInitialize)(); } } + if (hSelf) PrintLoadedMods(); return; }