diff options
author | tron <tron@openttd.org> | 2005-07-14 15:10:20 +0000 |
---|---|---|
committer | tron <tron@openttd.org> | 2005-07-14 15:10:20 +0000 |
commit | d364efea27fac60956eaaef6b9c4a638ca6811df (patch) | |
tree | c24ec07cc9deec19fdaa4fa4d5f1dc90e11bda11 /strgen | |
parent | 20b7c66f7fe06a17920accbce995d2d2448f4f52 (diff) | |
download | openttd-d364efea27fac60956eaaef6b9c4a638ca6811df.tar.xz |
(svn r2566) Rename COMMA{8,16,32} to just COMMA, because it's the same anyway
Diffstat (limited to 'strgen')
-rw-r--r-- | strgen/strgen.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/strgen/strgen.c b/strgen/strgen.c index 376a0ffb6..020958fe7 100644 --- a/strgen/strgen.c +++ b/strgen/strgen.c @@ -238,9 +238,7 @@ static const CmdStruct _cmd_structs[] = { // 0x7B=123 is the LAST special character we may use. // Numbers - {"COMMA32", EmitSingleByte, 0x7B}, // These all do the same thing nowadays - {"COMMA16", EmitSingleByte, 0x7B}, - {"COMMA8", EmitSingleByte, 0x7B}, + {"COMMA", EmitSingleByte, 0x7B}, {"NUMU16", EmitSingleByte, 0x7E}, // These two do the same thing nowadays {"INT32", EmitSingleByte, 0x7E}, // signed 32 bit integer |