Changeset - r14069:85922b1290c2
[Not reviewed]
master
0 1 0
rubidium - 14 years ago 2009-12-25 10:04:30
rubidium@openttd.org
(svn r18626) -Fix [FS#3425]: {CARGO} takes 2 parameters, not 1. This made {N:XYZ} commands after CARGO mess up their indices and that then triggered an assertion
1 file changed with 1 insertions and 1 deletions:
0 comments (0 inline, 0 general)
src/table/strgen_tables.h
Show inline comments
 
@@ -68,7 +68,7 @@ static const CmdStruct _cmd_structs[] = 
 

	
 
	{"STATIONFEATURES", EmitSingleChar, SCC_STATION_FEATURES,   1, C_NONE}, // station features string, icons of the features
 
	{"INDUSTRY",        EmitSingleChar, SCC_INDUSTRY_NAME,      1, C_NONE}, // industry, takes an industry #
 
	{"CARGO",           EmitSingleChar, SCC_CARGO,              1, C_NONE},
 
	{"CARGO",           EmitSingleChar, SCC_CARGO,              2, C_NONE},
 
	{"POWER",           EmitSingleChar, SCC_POWER,              1, C_NONE},
 
	{"VOLUME",          EmitSingleChar, SCC_VOLUME,             1, C_NONE},
 
	{"VOLUME_S",        EmitSingleChar, SCC_VOLUME_SHORT,       1, C_NONE},
0 comments (0 inline, 0 general)