shithub: choc

Download patch

ref: 8f5a4af76190c6dba1056d335073d98db23aabae
parent: 40d1ce5541da78b93348f7102c05f92e8df69062
author: Simon Howard <fraggle@soulsphere.org>
date: Sat Jan 21 10:55:33 EST 2017

textscreen: Very minor fix to code page.

0x7f in CP437 is actually Unicode character 0x2302, a symbol that
apparently represents a house.

--- 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: */            \
                                                     \