Update ICU on Windows to 68.1 with the v140_xp toolset.

- Remove the last usage of the MACRO "TRUE" as it's deprecated and
replace it by its value "1" the == operator is overloaded to return a
UBool(int8_t)  refs 9b9a96382c
- Remove two unused DLLs
- Update and add EOL to headers.

Refs #3004

This was SVN commit r24314.
This commit is contained in:
Stan
2020-12-02 16:47:28 +00:00
parent 1b150b303f
commit 5a66f89044
+1 -1
View File
@@ -201,7 +201,7 @@ void L10n::ReevaluateCurrentLocaleAndReload()
else
{
GetDictionaryLocale(locale, currentLocale);
currentLocaleIsOriginalGameLocale = (currentLocale == icu::Locale::getUS()) == TRUE;
currentLocaleIsOriginalGameLocale = (currentLocale == icu::Locale::getUS()) == 1;
useLongStrings = false;
}
LoadDictionaryForCurrentLocale();