(svn r588) -newgrf: Silent ignore those stupid one-byte zero special sprites (dbsetw.grf is crawling with them) (pasky).

pull/155/head
darkvater 20 years ago
parent 397cc50f61
commit 552689b7fe

@ -902,6 +902,11 @@ static void VehicleChangeInfo(byte *buf, int len)
byte engine;
EngineInfo *ei;
if (len == 1) {
DEBUG(grf, 8) ("Silently ignoring one-byte special sprite 0x00.");
return;
}
check_length(len, 6, "VehicleChangeInfo");
feature = buf[1];
numprops = buf[2];

Loading…
Cancel
Save