summaryrefslogtreecommitdiff
path: root/strgen
diff options
context:
space:
mode:
authortron <tron@openttd.org>2005-09-10 08:17:30 +0000
committertron <tron@openttd.org>2005-09-10 08:17:30 +0000
commitab1990e5c0dca496f944f2701cb76faaeecf8eef (patch)
tree507775a3d6777a0e74faaafe964b0f305e7bd216 /strgen
parent2aa27f9ecbcedfb744ead4e3be04e08f6810ded2 (diff)
downloadopenttd-ab1990e5c0dca496f944f2701cb76faaeecf8eef.tar.xz
(svn r2933) Implement the non-breaking space
Diffstat (limited to 'strgen')
-rw-r--r--strgen/strgen.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/strgen/strgen.c b/strgen/strgen.c
index 719f91833..84df5fa17 100644
--- a/strgen/strgen.c
+++ b/strgen/strgen.c
@@ -465,7 +465,9 @@ static const CmdStruct _cmd_structs[] = {
// 0x9E=158 is the LAST special character we may use.
- {"UPARROW", EmitSingleByte, 0xA0, 0},
+ {"UPARROW", EmitSingleByte, 0x80, 0},
+
+ {"NBSP", EmitSingleByte, 0xA0, 0, C_DONTCOUNT},
{"POUNDSIGN", EmitSingleByte, 0xA3, 0},
{"YENSIGN", EmitSingleByte, 0xA5, 0},
{"COPYRIGHT", EmitSingleByte, 0xA9, 0},