diff --git a/src/Startup.cpp b/src/Startup.cpp index a47491b..6a9b7df 100644 --- a/src/Startup.cpp +++ b/src/Startup.cpp @@ -235,7 +235,6 @@ void InitLauncher() { CheckName(); LinuxPatch(); CheckLocalKey(); - ConfigInit(); CheckForUpdates(std::string(GetVer()) + GetPatch()); } #elif defined(__linux__) @@ -244,7 +243,6 @@ void InitLauncher() { info("BeamMP Launcher v" + GetVer() + GetPatch()); CheckName(); CheckLocalKey(); - ConfigInit(); CheckForUpdates(std::string(GetVer()) + GetPatch()); } #endif diff --git a/src/main.cpp b/src/main.cpp index 5223c96..e7e7048 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -41,6 +41,7 @@ int main(int argc, const char** argv) try { GetEP(argv[0]); InitLog(); + ConfigInit(); InitOptions(argc, argv, options); InitLauncher();