mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-10 23:01:50 +00:00
- Added parentheses for clarity.
SVN r4286 (trunk)
This commit is contained in:
parent
78437d917c
commit
ce28c9c991
1 changed files with 1 additions and 1 deletions
|
@ -295,7 +295,7 @@ static int stripaccent(int code)
|
|||
return 'D' + (code & 0x20);
|
||||
if (acode == 0xD1) // N with tilde
|
||||
return 'N' + (code & 0x20);
|
||||
if (acode >= 0xD2 && acode <= 0xD6 || // O with accents
|
||||
if ((acode >= 0xD2 && acode <= 0xD6) || // O with accents
|
||||
acode == 0xD8) // O with stroke
|
||||
return 'O' + (code & 0x20);
|
||||
if (acode >= 0xD9 && acode <= 0xDC) // U with accents
|
||||
|
|
Loading…
Reference in a new issue