diff options
author | Jonathan Gray | 2004-01-06 12:28:24 +0000 |
---|---|---|
committer | Jonathan Gray | 2004-01-06 12:28:24 +0000 |
commit | 2be1b4d68acb322a20eae5c4cb1bb3b7045e7871 (patch) | |
tree | 495c9251d1bd6573b768f8994a19e3d33d6597ee /common | |
parent | 7b86116a5dedbed0687ddf431be4ec727389bc42 (diff) | |
download | scummvm-rg350-2be1b4d68acb322a20eae5c4cb1bb3b7045e7871.tar.gz scummvm-rg350-2be1b4d68acb322a20eae5c4cb1bb3b7045e7871.tar.bz2 scummvm-rg350-2be1b4d68acb322a20eae5c4cb1bb3b7045e7871.zip |
start work on czech subtitle support, not finished
svn-id: r12175
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 f53ba300d5..115ce31659 100644 --- a/common/util.cpp +++ b/common/util.cpp @@ -142,6 +142,7 @@ const LanguageDescription g_languages[] = { {"se", "Swedish", SE_SWE}, {"hb", "Hebrew", HB_HEB}, {"ru", "Russian", RU_RUS}, + {"cz", "Czech", CZ_CZE}, {0, 0, UNK_LANG} }; diff --git a/common/util.h b/common/util.h index d1a15a3b5a..0d02b9e5f0 100644 --- a/common/util.h +++ b/common/util.h @@ -108,7 +108,8 @@ enum Language { SE_SWE = 9, EN_GRB = 10, HB_HEB = 20, - RU_RUS = 21 + RU_RUS = 21, + CZ_CZE = 22 }; struct LanguageDescription { |