(svn r5919) -Cleanup: use the type Date when the variable really is a date

This commit is contained in:
rubidium
2006-08-15 16:55:40 +00:00
parent 1cc6e186f0
commit a0b4a29a57
8 changed files with 18 additions and 18 deletions

View File

@@ -76,8 +76,8 @@ typedef struct NetworkGameInfo {
byte companies_on; // How many started companies do we have (XXX - disabled for server atm, use ActivePlayerCount())
byte spectators_max; // Max spectators allowed on server
byte spectators_on; // How many spectators do we have? (XXX - disabled for server atm, use NetworkSpectatorCount())
uint16 game_date; // Current date
uint16 start_date; // When the game started
Date game_date; // Current date
Date start_date; // When the game started
char map_name[NETWORK_NAME_LENGTH]; // Map which is played ["random" for a randomized map]
uint16 map_width; // Map width
uint16 map_height; // Map height
@@ -107,7 +107,7 @@ typedef struct NetworkClientInfo {
byte client_lang; /// The language of the client
byte client_playas; /// As which player is this client playing (PlayerID)
uint32 client_ip; /// IP-address of the client (so he can be banned)
uint16 join_date; /// Gamedate the player has joined
Date join_date; /// Gamedate the player has joined
char unique_id[NETWORK_NAME_LENGTH]; /// Every play sends an unique id so we can indentify him
} NetworkClientInfo;