1
0
mirror of https://github.com/vcmi/vcmi.git synced 2025-03-27 21:49:10 +02:00

Merge pull request #38 from josch/vcmiserver-handle-options-first

let vcmiserver handle commandline options first
This commit is contained in:
Ivan Savenko 2014-09-02 20:33:59 +03:00
commit 0e2cc54252

View File

@ -599,14 +599,14 @@ int main(int argc, char** argv)
CBasicLogConfigurator logConfig(VCMIDirs::get().userCachePath() + "/VCMI_Server_log.txt", console);
logConfig.configureDefault();
preinitDLL(console);
settings.init();
logConfig.configure();
handleCommandOptions(argc, argv);
port = cmdLineOptions["port"].as<int>();
logNetwork->infoStream() << "Port " << port << " will be used.";
preinitDLL(console);
settings.init();
logConfig.configure();
loadDLLClasses();
srand ( (ui32)time(nullptr) );
try