aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEugene Sandulenko2010-01-03 16:33:03 +0000
committerEugene Sandulenko2010-01-03 16:33:03 +0000
commiteed763529702db94191f865780154f4583f1a66d (patch)
tree2e9f94bca5bb39310732451a8885815bb3ed9597
parent913616dc98adf73ccebd300931836d0b418f0ab8 (diff)
downloadscummvm-rg350-eed763529702db94191f865780154f4583f1a66d.tar.gz
scummvm-rg350-eed763529702db94191f865780154f4583f1a66d.tar.bz2
scummvm-rg350-eed763529702db94191f865780154f4583f1a66d.zip
Sort language list (and showing that Lure is really broken).
svn-id: r46932
-rw-r--r--common/util.cpp2
-rw-r--r--common/util.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/common/util.cpp b/common/util.cpp
index a0399315d8..e5ab3d22ba 100644
--- a/common/util.cpp
+++ b/common/util.cpp
@@ -192,6 +192,7 @@ const LanguageDescription g_languages[] = {
{"de", "German", DE_DEU},
{"gr", "Greek", GR_GRE},
{"hb", "Hebrew", HB_ISR},
+ {"hu", "Hungarian", HU_HUN},
{"it", "Italian", IT_ITA},
{"jp", "Japanese", JA_JPN},
{"kr", "Korean", KO_KOR},
@@ -201,7 +202,6 @@ const LanguageDescription g_languages[] = {
{"ru", "Russian", RU_RUS},
{"es", "Spanish", ES_ESP},
{"se", "Swedish", SE_SWE},
- {"hu", "Hungarian", HU_HUN},
{0, 0, UNK_LANG}
};
diff --git a/common/util.h b/common/util.h
index 8e7b2555d1..453eccda6f 100644
--- a/common/util.h
+++ b/common/util.h
@@ -165,6 +165,7 @@ enum Language {
DE_DEU,
GR_GRE,
HB_ISR,
+ HU_HUN,
IT_ITA,
JA_JPN,
KO_KOR,
@@ -174,7 +175,6 @@ enum Language {
RU_RUS,
ES_ESP,
SE_SWE,
- HU_HUN,
UNK_LANG = -1 // Use default language (i.e. none specified)
};