Merge branch 'master' into 1.5

This commit is contained in:
Wojtek Figat
2022-10-29 20:45:51 +02:00
24 changed files with 259 additions and 67 deletions

View File

@@ -215,7 +215,7 @@ bool String::IsANSI() const
bool result = true;
for (int32 i = 0; i < _length; i++)
{
if (_data[i] > 255)
if (_data[i] > 127)
{
result = false;
break;