Changeset - r15522:07fd9844efd2
[Not reviewed]
master
0 7 0
rubidium - 14 years ago 2010-07-19 17:24:33
rubidium@openttd.org
(svn r20191) -Codechange: unVARDEF _tick_counter and move it to a more logical location
7 files changed with 6 insertions and 4 deletions:
0 comments (0 inline, 0 general)
src/date.cpp
Show inline comments
 
@@ -26,7 +26,7 @@ Year      _cur_year;   ///< Current year
 
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)
 
{
src/date_func.h
Show inline comments
 
@@ -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);
src/gamelog.cpp
Show inline comments
 
@@ -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>
src/newgrf_airporttiles.cpp
Show inline comments
 
@@ -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];
src/newgrf_house.cpp
Show inline comments
 
@@ -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];
src/newgrf_industrytiles.cpp
Show inline comments
 
@@ -27,6 +27,7 @@
 
#include "animated_tile_func.h"
 
#include "water.h"
 
#include "sprite.h"
 
#include "date_func.h"
 

	
 
#include "table/strings.h"
 

	
src/variables.h
Show inline comments
 
@@ -16,7 +16,4 @@
 
#define VARDEF extern
 
#endif
 

	
 
/* Amount of game ticks */
 
VARDEF uint16 _tick_counter;
 

	
 
#endif /* VARIABLES_H */
0 comments (0 inline, 0 general)