mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2024-11-27 22:42:29 +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:
|
||||
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 0x218: return 0x15e; // Romanian S with comma below may get remapped to S with cedilla.
|
||||
case 0x219: return 0x15f;
|
||||
|
|
Loading…
Reference in a new issue