mirror of
https://github.com/ZDoom/qzdoom.git
synced 2025-03-03 08:00:56 +00:00
- added fallback to the parenthesis glyphs for the braces.
This commit is contained in:
parent
38520e36c8
commit
868220107b
1 changed files with 2 additions and 0 deletions
|
@ -354,6 +354,8 @@ int getAlternative(int code)
|
||||||
default:
|
default:
|
||||||
return code;
|
return code;
|
||||||
|
|
||||||
|
case '{': return '(';
|
||||||
|
case '}': return ')';
|
||||||
case 0x17f: return 's'; // The 'long s' can be safely remapped to the regular variant, not that this gets used in any real text...
|
case 0x17f: return 's'; // The 'long s' can be safely remapped to the regular variant, not that this gets used in any real text...
|
||||||
case 0x218: return 0x15e; // Romanian S with comma below may get remapped to S with cedilla.
|
case 0x218: return 0x15e; // Romanian S with comma below may get remapped to S with cedilla.
|
||||||
case 0x219: return 0x15f;
|
case 0x219: return 0x15f;
|
||||||
|
|
Loading…
Reference in a new issue