foxygit / doom Log in
commit 8f5a4af76190c6dba1056d335073d98db23aabae
Author:     Simon Howard <fraggle@soulsphere.org>
AuthorDate: Sat Jan 21 15:55:33 2017 +0000
Commit:     Simon Howard <fraggle@soulsphere.org>
CommitDate: Sat Jan 21 15:55:33 2017 +0000

    textscreen: Very minor fix to code page.

    0x7f in CP437 is actually Unicode character 0x2302, a symbol that
    apparently represents a house.
---
 textscreen/fonts/codepage.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/textscreen/fonts/codepage.h b/textscreen/fonts/codepage.h
index 8030ef97..66614932 100644
--- a/textscreen/fonts/codepage.h
+++ b/textscreen/fonts/codepage.h
@@ -66,7 +66,7 @@
     0x0070, 0x0071, 0x0072, 0x0073,  /* 70 - 7f */  \
     0x0074, 0x0075, 0x0076, 0x0077,                 \
     0x0078, 0x0079, 0x007a, 0x007b,                 \
-    0x007c, 0x007d, 0x007e, 0x007f,                 \
+    0x007c, 0x007d, 0x007e, 0x2302,                 \
                                                     \
        /* CP437 Extended ASCII range: */            \
                                                     \