(svn r4552) - NewGRF: fix braino... in r4550, new_scheme should true when the version is 7 or higher, not less than 7...

pull/155/head
peter1138 18 years ago
parent b4ba26bce7
commit af556831a9

@ -1724,7 +1724,7 @@ static void VehicleNewName(byte *buf, int len)
uint16 id;
uint16 endid;
const char* name;
bool new_scheme = _cur_grffile->grf_version < 7;
bool new_scheme = _cur_grffile->grf_version >= 7;
check_length(len, 6, "VehicleNewName");
buf++;

Loading…
Cancel
Save