Codechange: Remove write-only spec_id from RoadStopSpec.

Comment is incorrect about its value too.
This commit is contained in:
Peter Nelson 2024-04-26 17:44:42 +01:00
parent a6d401debf
commit 3c9b5eee22
No known key found for this signature in database
GPG Key ID: 8EF8F0A467DF75ED
2 changed files with 0 additions and 2 deletions

View File

@ -4846,7 +4846,6 @@ static ChangeInfoResult RoadStopChangeInfo(uint id, int numinfo, int prop, ByteR
uint32_t classid = buf->ReadDWord(); uint32_t classid = buf->ReadDWord();
rs->cls_id = RoadStopClass::Allocate(BSWAP32(classid)); rs->cls_id = RoadStopClass::Allocate(BSWAP32(classid));
rs->spec_id = id + i;
break; break;
} }

View File

@ -127,7 +127,6 @@ struct RoadStopSpec {
*/ */
GRFFilePropsBase<NUM_CARGO + 3> grf_prop; GRFFilePropsBase<NUM_CARGO + 3> grf_prop;
RoadStopClassID cls_id; ///< The class to which this spec belongs. RoadStopClassID cls_id; ///< The class to which this spec belongs.
int spec_id; ///< The ID of this spec inside the class.
StringID name; ///< Name of this stop StringID name; ///< Name of this stop
RoadStopAvailabilityType stop_type = ROADSTOPTYPE_ALL; RoadStopAvailabilityType stop_type = ROADSTOPTYPE_ALL;