Index: emu/lcd.c
===================================================================
--- emu/lcd.c	(revision 25c3737bf99fba6b6fb6f87b35de32b322704e11)
+++ emu/lcd.c	(revision 5e2fc8bce8580585fa683a368174085e93fde4da)
@@ -134,4 +134,10 @@
 				line[x] = ' ';
 			}
+			else if (line[x] == 0x7e) {
+				line[x] = (char) 0xbb;
+			}
+			else if (line[x] == 0x7f) {
+				line[x] = (char) 0xab;
+			}
 		}
 
