mirror of
https://github.com/godotengine/godot.git
synced 2025-10-15 02:49:24 +00:00
Fix upper/lower case convertion for characters >= 0x80
(cherry picked from commit ecb071b221
)
This commit is contained in:

committed by
Rémi Verschelde

parent
f302888a47
commit
0572b52ba1
@@ -885,8 +885,8 @@ String String::to_upper() const {
|
||||
|
||||
for (int i = 0; i < upper.size(); i++) {
|
||||
|
||||
const char s = upper[i];
|
||||
const char t = _find_upper(s);
|
||||
const CharType s = upper[i];
|
||||
const CharType t = _find_upper(s);
|
||||
if (s != t) // avoid copy on write
|
||||
upper[i] = t;
|
||||
}
|
||||
@@ -900,8 +900,8 @@ String String::to_lower() const {
|
||||
|
||||
for (int i = 0; i < lower.size(); i++) {
|
||||
|
||||
const char s = lower[i];
|
||||
const char t = _find_lower(s);
|
||||
const CharType s = lower[i];
|
||||
const CharType t = _find_lower(s);
|
||||
if (s != t) // avoid copy on write
|
||||
lower[i] = t;
|
||||
}
|
||||
|
Reference in New Issue
Block a user