diff options
author | Travis Howell | 2004-02-10 13:24:12 +0000 |
---|---|---|
committer | Travis Howell | 2004-02-10 13:24:12 +0000 |
commit | 343037f0ec236d4ef23b7dc799943982f7d46cc1 (patch) | |
tree | fd73c3e466e6d0a20f7710a9574f2df2bb0d200b /common | |
parent | 71edb7ed6558913225505ba978671075b21c4574 (diff) | |
download | scummvm-rg350-343037f0ec236d4ef23b7dc799943982f7d46cc1.tar.gz scummvm-rg350-343037f0ec236d4ef23b7dc799943982f7d46cc1.tar.bz2 scummvm-rg350-343037f0ec236d4ef23b7dc799943982f7d46cc1.zip |
Correct hberew
svn-id: r12815
Diffstat (limited to 'common')
-rw-r--r-- | common/util.cpp | 2 | ||||
-rw-r--r-- | common/util.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/common/util.cpp b/common/util.cpp index b5a1eab668..962f3d9afd 100644 --- a/common/util.cpp +++ b/common/util.cpp @@ -140,7 +140,7 @@ const LanguageDescription g_languages[] = { {"kr", "Korean", KO_KOR}, {"gb", "English (GB)", EN_GRB}, {"se", "Swedish", SE_SWE}, - {"hb", "Hebrew", HB_HEB}, + {"hb", "Hebrew", HB_ISR}, {"ru", "Russian", RU_RUS}, {"cz", "Czech", CZ_CZE}, {"nl", "Dutch", NL_NLD}, diff --git a/common/util.h b/common/util.h index 9496d233d8..7b91104523 100644 --- a/common/util.h +++ b/common/util.h @@ -107,7 +107,7 @@ enum Language { KO_KOR = 8, SE_SWE = 9, EN_GRB = 10, - HB_HEB = 20, + HB_ISR = 20, RU_RUS = 21, CZ_CZE = 22, NL_NLD = 23 |