diff options
author | Jordi Vilalta Prat | 2010-11-30 18:50:19 +0000 |
---|---|---|
committer | Jordi Vilalta Prat | 2010-11-30 18:50:19 +0000 |
commit | 8393bc5b5f2f3e5304cf589c21956676c4bd04c1 (patch) | |
tree | 7f4292c824d384fc4be70288d350926ddb1bcb43 /base | |
parent | 3c55c9faf72804e2f2efca0d7b924e2b696e18e8 (diff) | |
download | scummvm-rg350-8393bc5b5f2f3e5304cf589c21956676c4bd04c1.tar.gz scummvm-rg350-8393bc5b5f2f3e5304cf589c21956676c4bd04c1.tar.bz2 scummvm-rg350-8393bc5b5f2f3e5304cf589c21956676c4bd04c1.zip |
I18N: Don't build TranslationManager when translation is disabled.
svn-id: r54684
Diffstat (limited to 'base')
-rw-r--r-- | base/main.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/base/main.cpp b/base/main.cpp index c6fffe5ce3..f4cd2a531e 100644 --- a/base/main.cpp +++ b/base/main.cpp @@ -481,7 +481,9 @@ extern "C" int scummvm_main(int argc, const char * const argv[]) { GUI::GuiManager::destroy(); Common::ConfigManager::destroy(); Common::SearchManager::destroy(); +#ifdef USE_TRANSLATION Common::TranslationManager::destroy(); +#endif return 0; } |