diff options
-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, |