summaryrefslogtreecommitdiff
path: root/strgen
diff options
context:
space:
mode:
authortron <tron@openttd.org>2005-08-20 18:14:32 +0000
committertron <tron@openttd.org>2005-08-20 18:14:32 +0000
commitae49d487cc7cae0c0b47834aba94bdb801ba8c06 (patch)
tree637f2195ee283059cdbf3ca7e4fbfcf41df234b8 /strgen
parentc1f4acd4a0aa1f8811cb50add8fe244adac68526 (diff)
downloadopenttd-ae49d487cc7cae0c0b47834aba94bdb801ba8c06.tar.xz
(svn r2879) Major step twoards ISO-8859-15
Add several missing chars: - Š/š (S with hacek, all sizes) - Ž/ž (Z with hacek, all sizes) - Œ/œ (OE ligature, all sizes) - Ð/ð (eth, large font was missing) - Þ/þ (thorn, large font was missing) - º (male ordinal sign, all sizes) Also move Ÿ (Y with umlaut, all sizes) to the correct position in the charset To add some chars it was necessary to shuffle some OTTD specific chars (arrows, transport type markers) around
Diffstat (limited to 'strgen')
-rw-r--r--strgen/strgen.c17
1 files changed, 8 insertions, 9 deletions
diff --git a/strgen/strgen.c b/strgen/strgen.c
index c4155d760..abe879f68 100644
--- a/strgen/strgen.c
+++ b/strgen/strgen.c
@@ -474,15 +474,14 @@ static const CmdStruct _cmd_structs[] = {
{"CROSS", EmitSingleByte, 0xAD, 0},
{"RIGHTARROW", EmitSingleByte, 0xAF, 0},
- {"TRAIN", EmitSingleByte, 0xb4, 0},
- {"LORRY", EmitSingleByte, 0xb5, 0},
- {"BUS", EmitSingleByte, 0xb6, 0},
- {"PLANE", EmitSingleByte, 0xb7, 0},
- {"SHIP", EmitSingleByte, 0xb8, 0},
-
- {"SMALLUPARROW", EmitSingleByte, 0xBC, 0},
- {"SMALLDOWNARROW", EmitSingleByte, 0xBD, 0},
- {"THREE_FOURTH", EmitSingleByte, 0xBE, 0},
+ {"TRAIN", EmitSingleByte, 0x94, 0},
+ {"LORRY", EmitSingleByte, 0x95, 0},
+ {"BUS", EmitSingleByte, 0x96, 0},
+ {"PLANE", EmitSingleByte, 0x97, 0},
+ {"SHIP", EmitSingleByte, 0x98, 0},
+
+ {"SMALLUPARROW", EmitSingleByte, 0x90, 0},
+ {"SMALLDOWNARROW", EmitSingleByte, 0x91, 0},
};