mirror of
https://github.com/OpenTTD/OpenTTD.git
synced 2025-08-31 10:29:10 +00:00
Fix a9a21e78
: Depots aren't really stations.
This commit is contained in:
@@ -12,10 +12,10 @@
|
||||
|
||||
#include "station_type.h"
|
||||
|
||||
typedef StationID DepotID; ///< Type for the unique identifier of depots.
|
||||
typedef uint16 DepotID; ///< Type for the unique identifier of depots.
|
||||
struct Depot;
|
||||
|
||||
static const DepotID INVALID_DEPOT = INVALID_STATION;
|
||||
static const DepotID INVALID_DEPOT = (DepotID)INVALID_STATION;
|
||||
|
||||
static const uint MAX_LENGTH_DEPOT_NAME_CHARS = 32; ///< The maximum length of a depot name in characters including '\0'
|
||||
|
||||
|
Reference in New Issue
Block a user