From 2e539dfeca74e61d598d6fc44d98918a2cb16ee0 Mon Sep 17 00:00:00 2001 From: Jonathan G Rennison Date: Thu, 22 Nov 2018 19:14:02 +0000 Subject: [PATCH] Fix typo in static assert message --- src/newgrf.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/newgrf.cpp b/src/newgrf.cpp index 83fef234f6..3395f801b3 100644 --- a/src/newgrf.cpp +++ b/src/newgrf.cpp @@ -4560,7 +4560,7 @@ static void FeatureChangeInfo(ByteReader *buf) /* GSF_RAILTYPES */ RailTypeChangeInfo, /* 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 numprops = buf->ReadByte();