diff options
author | Andrei Karas <akaras@inbox.ru> | 2012-02-18 03:18:22 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2012-02-18 03:18:22 +0300 |
commit | c652b5b89d22a532f80de4a3eff96a336f90d58b (patch) | |
tree | f664f07a3ed96f56a1c89fce717fee73cdfdcd96 /src/client.cpp | |
parent | df434dec8da2ec25b0ce19445cc80885ad85e0f3 (diff) | |
download | plus-c652b5b89d22a532f80de4a3eff96a336f90d58b.tar.gz plus-c652b5b89d22a532f80de4a3eff96a336f90d58b.tar.bz2 plus-c652b5b89d22a532f80de4a3eff96a336f90d58b.tar.xz plus-c652b5b89d22a532f80de4a3eff96a336f90d58b.zip |
Center window on screen under windows and mac osx.
Diffstat (limited to 'src/client.cpp')
-rw-r--r-- | src/client.cpp | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/client.cpp b/src/client.cpp index 6e80a46d6..5344dcffe 100644 --- a/src/client.cpp +++ b/src/client.cpp @@ -276,7 +276,6 @@ Client::Client(const Options &options): void Client::testsInit() { - printf ("testInit\n"); if (!mOptions.test.empty()) { gameInit(); @@ -342,6 +341,12 @@ void Client::gameInit() textdomain("manaplus"); #endif +#if defined(WIN32) || defined(__APPLE__) + putenv("SDL_VIDEO_CENTERED=1"); +#endif + + putenv((char*)("LANG=" + lang).c_str()); + chatLogger = new ChatLogger; if (mOptions.chatLogDir == "") chatLogger->setBaseLogDir(mLocalDataDir + std::string("/logs/")); |