diff options
| author | oy <Tom_Adams@web.de> | 2010-08-06 20:47:45 +0200 |
|---|---|---|
| committer | oy <Tom_Adams@web.de> | 2010-08-06 20:47:45 +0200 |
| commit | 3c082b6441dba3b4de1fd0fcc3e2ff838b5b8111 (patch) | |
| tree | b3e2bdb5a34f6c0b7775a4966247a9cc557a33a4 /src/engine/client | |
| parent | 49cefa406b2520628c52fbc9febb6c0f41aa57a7 (diff) | |
| download | zcatch-3c082b6441dba3b4de1fd0fcc3e2ff838b5b8111.tar.gz zcatch-3c082b6441dba3b4de1fd0fcc3e2ff838b5b8111.zip | |
changed the client configuration initialisation
Diffstat (limited to 'src/engine/client')
| -rw-r--r-- | src/engine/client/client.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/engine/client/client.cpp b/src/engine/client/client.cpp index 816f0667..025182f2 100644 --- a/src/engine/client/client.cpp +++ b/src/engine/client/client.cpp @@ -2017,6 +2017,9 @@ int main(int argc, const char **argv) // ignore_convention // init client's interfaces m_Client.InitInterfaces(); + // execute config file + pConsole->ExecuteFile("settings.cfg"); + // execute autoexec file pConsole->ExecuteFile("autoexec.cfg"); @@ -2024,9 +2027,6 @@ int main(int argc, const char **argv) // ignore_convention if(argc > 1) // ignore_convention pConsole->ParseArguments(argc-1, &argv[1]); // ignore_convention - // execute config file - pConsole->ExecuteFile("settings.cfg"); - m_Client.Engine()->InitLogfile(); // run the client |