diff options
author | Travis Howell | 2005-11-18 00:59:47 +0000 |
---|---|---|
committer | Travis Howell | 2005-11-18 00:59:47 +0000 |
commit | 9cde2621920b456fe2a2403b04af820700bf5072 (patch) | |
tree | 327265235249d04a5d76f5de5b47204ad6200adf /common | |
parent | fc0713af817455561872f8e827451ba7708611a3 (diff) | |
download | scummvm-rg350-9cde2621920b456fe2a2403b04af820700bf5072.tar.gz scummvm-rg350-9cde2621920b456fe2a2403b04af820700bf5072.tar.bz2 scummvm-rg350-9cde2621920b456fe2a2403b04af820700bf5072.zip |
Add Polish version of Simon the Sorcerer 2 (Windows).
svn-id: r19634
Diffstat (limited to 'common')
-rw-r--r-- | common/util.cpp | 1 | ||||
-rw-r--r-- | common/util.h | 3 |
2 files changed, 3 insertions, 1 deletions
diff --git a/common/util.cpp b/common/util.cpp index 4196bd929b..03c9865859 100644 --- a/common/util.cpp +++ b/common/util.cpp @@ -125,6 +125,7 @@ const LanguageDescription g_languages[] = { {"cz", "Czech", CZ_CZE}, {"nl", "Dutch", NL_NLD}, {"nb", "Norwegian Bokm\xE5l", NB_NOR}, + {"pl", "Polish", PL_POL}, {0, 0, UNK_LANG} }; diff --git a/common/util.h b/common/util.h index dca373ad66..762811a4eb 100644 --- a/common/util.h +++ b/common/util.h @@ -106,7 +106,8 @@ enum Language { RU_RUS = 21, CZ_CZE = 22, NL_NLD = 23, - NB_NOR = 24 + NB_NOR = 24, + PL_POL = 25 }; struct LanguageDescription { |