aboutsummaryrefslogtreecommitdiff
path: root/common/util.cpp
diff options
context:
space:
mode:
authorEugene Sandulenko2006-04-08 23:12:56 +0000
committerEugene Sandulenko2006-04-08 23:12:56 +0000
commit5a2ad04a9eb48f0fec484861d09830b398db700d (patch)
tree67b8d9485284fa3d3a34b20de6974b54ab6b1985 /common/util.cpp
parent3add3dae958e8cbb29e046f9f24e00d907dab319 (diff)
downloadscummvm-rg350-5a2ad04a9eb48f0fec484861d09830b398db700d.tar.gz
scummvm-rg350-5a2ad04a9eb48f0fec484861d09830b398db700d.tar.bz2
scummvm-rg350-5a2ad04a9eb48f0fec484861d09830b398db700d.zip
Introduced language EN_ANY used for general English game entries. EN_USA and
EN_GRB should be used for games which have both variants. Currently it is MM NES and BASS. All other are switched to EN_ANY. svn-id: r21702
Diffstat (limited to 'common/util.cpp')
-rw-r--r--common/util.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/common/util.cpp b/common/util.cpp
index 9649d35ef4..d0ee385be2 100644
--- a/common/util.cpp
+++ b/common/util.cpp
@@ -110,7 +110,8 @@ uint RandomSource::getRandomNumberRng(uint min, uint max) {
const LanguageDescription g_languages[] = {
- {"en", "English (US)", EN_USA},
+ {"en", "English", EN_ANY},
+ {"us", "English (US)", EN_USA},
{"de", "German", DE_DEU},
{"fr", "French", FR_FRA},
{"it", "Italian", IT_ITA},