Fix typo in static assert message

This commit is contained in:
Jonathan G Rennison
2018-11-22 19:14:02 +00:00
parent 254bc4a710
commit 2e539dfeca

View File

@@ -4560,7 +4560,7 @@ static void FeatureChangeInfo(ByteReader *buf)
/* GSF_RAILTYPES */ RailTypeChangeInfo, /* GSF_RAILTYPES */ RailTypeChangeInfo,
/* GSF_AIRPORTTILES */ AirportTilesChangeInfo, /* GSF_AIRPORTTILES */ AirportTilesChangeInfo,
}; };
static_assert(lengthof(handler) == lengthof(_cur.grffile->action0_property_remaps), "Action 0 featur elist length mismatch"); static_assert(lengthof(handler) == lengthof(_cur.grffile->action0_property_remaps), "Action 0 feature list length mismatch");
uint8 feature = buf->ReadByte(); uint8 feature = buf->ReadByte();
uint8 numprops = buf->ReadByte(); uint8 numprops = buf->ReadByte();