diff options
author | Eugene Sandulenko | 2006-04-08 23:20:15 +0000 |
---|---|---|
committer | Eugene Sandulenko | 2006-04-08 23:20:15 +0000 |
commit | c09fef73c021a7ca434c807685116e9c340455ad (patch) | |
tree | d8f1658b8508dbf3b98ab91c253c22a013b44d16 | |
parent | 5a2ad04a9eb48f0fec484861d09830b398db700d (diff) | |
download | scummvm-rg350-c09fef73c021a7ca434c807685116e9c340455ad.tar.gz scummvm-rg350-c09fef73c021a7ca434c807685116e9c340455ad.tar.bz2 scummvm-rg350-c09fef73c021a7ca434c807685116e9c340455ad.zip |
Add comments explaining what does EN_ANY mean
svn-id: r21703
-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 d0ee385be2..94a71a8795 100644 --- a/common/util.cpp +++ b/common/util.cpp @@ -110,7 +110,7 @@ uint RandomSource::getRandomNumberRng(uint min, uint max) { const LanguageDescription g_languages[] = { - {"en", "English", EN_ANY}, + {"en", "English", EN_ANY}, // Generic English (when only one game version exist) {"us", "English (US)", EN_USA}, {"de", "German", DE_DEU}, {"fr", "French", FR_FRA}, diff --git a/common/util.h b/common/util.h index f527017f8f..6d3fa12666 100644 --- a/common/util.h +++ b/common/util.h @@ -91,7 +91,7 @@ public: */ enum Language { UNK_LANG = -1, // Use default language (i.e. none specified) - EN_ANY = 0, + EN_ANY = 0, // Generic English (when only one game version exist) EN_USA = 1, DE_DEU = 2, FR_FRA = 3, |