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 | b4f549f4eee551077af6b18ed0b567711e6d8c74 (patch) | |
tree | c24ec07cc9deec19fdaa4fa4d5f1dc90e11bda11 /strgen | |
parent | 53851d5e776484c92d535d756d6cb06a4fc9013a (diff) | |
download | openttd-b4f549f4eee551077af6b18ed0b567711e6d8c74.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 |