mirror of
https://github.com/OpenTTD/OpenTTD.git
synced 2026-07-24 03:56:43 +00:00
Codefix: use correct type for array holding Trackdirs (#15658)
This commit is contained in:
+1
-1
@@ -2286,7 +2286,7 @@ static void GetTileDesc_Road(TileIndex tile, TileDesc &td)
|
||||
* Given the direction the road depot is pointing, this is the direction the
|
||||
* vehicle should be travelling in in order to enter the depot.
|
||||
*/
|
||||
static constexpr DiagDirectionIndexArray<uint8_t> _roadveh_enter_depot_dir{
|
||||
static constexpr DiagDirectionIndexArray<Trackdir> _roadveh_enter_depot_dir{
|
||||
TRACKDIR_X_SW, TRACKDIR_Y_NW, TRACKDIR_X_NE, TRACKDIR_Y_SE
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user