diff options
author | Simon Howard | 2012-02-03 21:38:06 +0000 |
---|---|---|
committer | Simon Howard | 2012-02-03 21:38:06 +0000 |
commit | 20f405ec5416e5c543425fadc1068e5983cdd136 (patch) | |
tree | e9aec4ecdc3599cc9e0412d25945dbd0acb9ebe5 | |
parent | 85b5a7487d5b44b94e6d2fc74c997ec69e352b1a (diff) | |
download | chocolate-doom-20f405ec5416e5c543425fadc1068e5983cdd136.tar.gz chocolate-doom-20f405ec5416e5c543425fadc1068e5983cdd136.tar.bz2 chocolate-doom-20f405ec5416e5c543425fadc1068e5983cdd136.zip |
Fix CP437-Unicode mapping of cedilla character.
Subversion-branch: /trunk/chocolate-doom
Subversion-revision: 2492
-rw-r--r-- | textscreen/txt_gui.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/textscreen/txt_gui.c b/textscreen/txt_gui.c index bc869255..30d43808 100644 --- a/textscreen/txt_gui.c +++ b/textscreen/txt_gui.c @@ -34,7 +34,7 @@ typedef struct txt_cliparea_s txt_cliparea_t; static const uint16_t cp437_unicode[] = { 0x00c7, 0x00fc, 0x00e9, 0x00e2, // 80-8f - 0x00e4, 0x00e0, 0x00e5, 0x00e6, + 0x00e4, 0x00e0, 0x00e5, 0x00e7, 0x00ea, 0x00eb, 0x00e8, 0x00ef, 0x00ee, 0x00ec, 0x00c4, 0x00c5, |