mirror of
https://github.com/OpenTTD/OpenTTD.git
synced 2026-07-26 00:45:35 +00:00
Codechange: make TrackStatus a struct instead of opaque uint32_t (#15653)
This commit is contained in:
+1
-1
@@ -2201,7 +2201,7 @@ static TrackStatus GetTileTrackStatus_Road(TileIndex tile, TransportType mode, R
|
||||
|
||||
default: break;
|
||||
}
|
||||
return CombineTrackStatus(trackdirbits, red_signals);
|
||||
return {trackdirbits, red_signals};
|
||||
}
|
||||
|
||||
static const StringID _road_tile_strings[] = {
|
||||
|
||||
Reference in New Issue
Block a user