1
0
mirror of https://github.com/vcmi/vcmi.git synced 2025-08-13 19:54:17 +02:00

Merge pull request #2288 from NikolayIT/patch-1

Small fix in characters encodings in Languages.h
This commit is contained in:
Ivan Savenko
2023-07-05 14:21:10 +03:00
committed by GitHub

View File

@@ -81,8 +81,8 @@ inline const auto & getLanguageList()
{ "turkish", "Turkish", "Türkçe", "CP1254", "tr", true },
{ "ukrainian", "Ukrainian", "Українська", "CP1251", "uk", true },
{ "other_cp1250", "Other (East European)", "", "CP1251", "", false },
{ "other_cp1251", "Other (Cyrillic Script)", "", "CP1250", "", false },
{ "other_cp1250", "Other (East European)", "", "CP1250", "", false },
{ "other_cp1251", "Other (Cyrillic Script)", "", "CP1251", "", false },
{ "other_cp1252", "Other (West European)", "", "CP1252", "", false }
} };
static_assert(languages.size() == static_cast<size_t>(ELanguages::COUNT), "Languages array is missing a value!");