Skip to content
Snippets Groups Projects
Commit 38a2e67b authored by Rob Swindell's avatar Rob Swindell :speech_balloon:
Browse files

Translate the UNICODE MACRON character to an ASCII tilde (~)

So we can display ¯\_(ツ)_/¯ in ASCII. It's really important.
parent 32e6996b
No related branches found
No related tags found
No related merge requests found
Pipeline #61 passed
......@@ -354,6 +354,7 @@ char unicode_to_cp437(enum unicode_codepoint codepoint)
case UNICODE_ACUTE_ACCENT: return '\'';
case UNICODE_BROKEN_BAR: return '|';
case UNICODE_MACRON: return '~';
case UNICODE_CENT_SIGN: return CP437_CENT_SIGN;
case UNICODE_POUND_SIGN: return CP437_POUND_SIGN;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment