mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-02-06 18:45:32 +00:00
Merge branch 'dont_assign' into 'master'
Don't assign a variable passed by value See merge request OpenMW/openmw!897
This commit is contained in:
commit
6a7bc208de
1 changed files with 4 additions and 4 deletions
|
@ -45,19 +45,19 @@ public:
|
|||
{
|
||||
// Russian alphabet
|
||||
if (ch >= 0x0410 && ch < 0x0430)
|
||||
return ch += 0x20;
|
||||
return ch + 0x20;
|
||||
|
||||
// Cyrillic IO character
|
||||
if (ch == 0x0401)
|
||||
return ch += 0x50;
|
||||
return ch + 0x50;
|
||||
|
||||
// Latin alphabet
|
||||
if (ch >= 0x41 && ch < 0x60)
|
||||
return ch += 0x20;
|
||||
return ch + 0x20;
|
||||
|
||||
// Deutch characters
|
||||
if (ch == 0xc4 || ch == 0xd6 || ch == 0xdc)
|
||||
return ch += 0x20;
|
||||
return ch + 0x20;
|
||||
if (ch == 0x1e9e)
|
||||
return 0xdf;
|
||||
|
||||
|
|
Loading…
Reference in a new issue