blitz-foundation / monkey2

zlib License
3 stars 0 forks source link

Case conversion functions don't work with non-ASCII characters #67

Closed Pharmhaus-2 closed 5 years ago

Pharmhaus-2 commented 5 years ago

Original Author: secondgeargames

Tested on Windows 10 desktop target:

Print "Привет".ToUpper()
Print "Привет".ToLower()
Print "привет".Capitalize()
Print "ÄÄ".ToLower()
Print "ää".ToUpper()
Print "ää".Capitalize()

output:

Привет
Привет
привет
ÄÄ
ää
ää
Pharmhaus-2 commented 5 years ago

Seems to be fixed in develop.