NewGRF stations: Remove extended version of varuiable 68
This commit is contained in:
@@ -289,9 +289,6 @@ uint32 StationScopeResolver::GetNearbyStationInfo(uint32 parameter, StationScope
|
||||
default:
|
||||
return res | ClampTo<uint8>(localidx);
|
||||
|
||||
case NearbyStationInfoMode::Extended:
|
||||
return res | (localidx & 0xFF) | ((localidx & 0xFF00) << 16);
|
||||
|
||||
case NearbyStationInfoMode::V2:
|
||||
return (res << 8) | localidx;
|
||||
}
|
||||
@@ -389,11 +386,6 @@ uint32 StationScopeResolver::GetNearbyStationInfo(uint32 parameter, StationScope
|
||||
return this->GetNearbyStationInfo(parameter, NearbyStationInfoMode::Standard);
|
||||
}
|
||||
|
||||
/* Station info of nearby tiles: extended */
|
||||
case A2VRI_STATION_INFO_NEARBY_TILES_EXT: {
|
||||
return this->GetNearbyStationInfo(parameter, NearbyStationInfoMode::Extended);
|
||||
}
|
||||
|
||||
/* Station info of nearby tiles: v2 */
|
||||
case A2VRI_STATION_INFO_NEARBY_TILES_V2: {
|
||||
return this->GetNearbyStationInfo(parameter, NearbyStationInfoMode::V2);
|
||||
|
Reference in New Issue
Block a user