You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-13 13:31:48 +00:00
Update HarfBuzz, ICU and FreeType
HarfBuzz: Update to version 7.3.0 ICU4C: Update to version 73.1 FreeType: Update to version 2.13.0
This commit is contained in:
6
thirdparty/icu4c/common/util_props.cpp
vendored
6
thirdparty/icu4c/common/util_props.cpp
vendored
@@ -91,8 +91,8 @@ int32_t ICU_Utility::parsePattern(const UnicodeString& rule, int32_t pos, int32_
|
||||
int32_t p;
|
||||
int32_t intCount = 0; // number of integers parsed
|
||||
for (int32_t i=0; i<pattern.length(); ++i) {
|
||||
UChar cpat = pattern.charAt(i);
|
||||
UChar c;
|
||||
char16_t cpat = pattern.charAt(i);
|
||||
char16_t c;
|
||||
switch (cpat) {
|
||||
case 32 /*' '*/:
|
||||
if (pos >= limit) {
|
||||
@@ -120,7 +120,7 @@ int32_t ICU_Utility::parsePattern(const UnicodeString& rule, int32_t pos, int32_
|
||||
if (pos >= limit) {
|
||||
return -1;
|
||||
}
|
||||
c = (UChar) u_tolower(rule.charAt(pos++));
|
||||
c = (char16_t) u_tolower(rule.charAt(pos++));
|
||||
if (c != cpat) {
|
||||
return -1;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user