(svn r20191) -Codechange: unVARDEF _tick_counter and move it to a more logical location

This commit is contained in:
rubidium 2010-07-19 17:24:33 +00:00
parent 73527b7b45
commit 644deff9d2
7 changed files with 6 additions and 4 deletions

View File

@ -26,7 +26,7 @@ Year _cur_year; ///< Current year, starting at 0
Month _cur_month; ///< Current month (0..11)
Date _date; ///< Current date in days (day counter)
DateFract _date_fract;
uint16 _tick_counter; ///< Ever incrementing (and sometimes wrapping) tick counter for setting off various events
void SetDate(Date date)
{

View File

@ -18,6 +18,7 @@ extern Year _cur_year;
extern Month _cur_month;
extern Date _date;
extern DateFract _date_fract;
extern uint16 _tick_counter;
void SetDate(Date date);
void ConvertDateToYMD(Date date, YearMonthDay *ymd);

View File

@ -19,6 +19,7 @@
#include "gamelog_internal.h"
#include "console_func.h"
#include "debug.h"
#include "date_func.h"
#include "rev.h"
#include <stdarg.h>

View File

@ -28,6 +28,7 @@
#include "core/random_func.hpp"
#include "table/strings.h"
#include "table/airporttiles.h"
#include "date_func.h"
AirportTileSpec AirportTileSpec::tiles[NUM_AIRPORTTILES];

View File

@ -28,6 +28,7 @@
#include "core/random_func.hpp"
#include "sprite.h"
#include "genworld.h"
#include "date_func.h"
static BuildingCounts<uint32> _building_counts;
static HouseClassMapping _class_mapping[HOUSE_CLASS_MAX];

View File

@ -27,6 +27,7 @@
#include "animated_tile_func.h"
#include "water.h"
#include "sprite.h"
#include "date_func.h"
#include "table/strings.h"

View File

@ -16,7 +16,4 @@
#define VARDEF extern
#endif
/* Amount of game ticks */
VARDEF uint16 _tick_counter;
#endif /* VARIABLES_H */