Changeset - r27984:4d71f61bffdb
[Not reviewed]
master
0 7 0
Peter Nelson - 14 months ago 2023-10-04 16:02:16
peter1138@openttd.org
Fix: Incorrect include path for timers. (#11351)
7 files changed with 15 insertions and 15 deletions:
0 comments (0 inline, 0 general)
src/timer/timer_game_calendar.cpp
Show inline comments
 
@@ -10,14 +10,14 @@
 
 * This file implements the timer logic for the game-calendar-timer.
 
 */
 

	
 
#include "stdafx.h"
 
#include "openttd.h"
 
#include "../stdafx.h"
 
#include "../openttd.h"
 
#include "timer.h"
 
#include "timer_game_calendar.h"
 
#include "vehicle_base.h"
 
#include "linkgraph/linkgraph.h"
 
#include "../vehicle_base.h"
 
#include "../linkgraph/linkgraph.h"
 

	
 
#include "safeguards.h"
 
#include "../safeguards.h"
 

	
 
TimerGameCalendar::Year TimerGameCalendar::year = {};
 
TimerGameCalendar::Month TimerGameCalendar::month = {};
src/timer/timer_game_calendar.h
Show inline comments
 
@@ -10,7 +10,7 @@
 
#ifndef TIMER_GAME_CALENDAR_H
 
#define TIMER_GAME_CALENDAR_H
 

	
 
#include "stdafx.h"
 
#include "../stdafx.h"
 
#include "../core/strong_typedef_type.hpp"
 

	
 
/**
src/timer/timer_game_realtime.cpp
Show inline comments
 
@@ -10,12 +10,12 @@
 
 * This file implements the timer logic for the real time game-timer.
 
 */
 

	
 
#include "stdafx.h"
 
#include "openttd.h"
 
#include "../stdafx.h"
 
#include "../openttd.h"
 
#include "timer.h"
 
#include "timer_game_realtime.h"
 

	
 
#include "safeguards.h"
 
#include "../safeguards.h"
 

	
 
template<>
 
void IntervalTimer<TimerGameRealtime>::Elapsed(TimerGameRealtime::TElapsed delta)
src/timer/timer_game_tick.cpp
Show inline comments
 
@@ -10,11 +10,11 @@
 
 * This file implements the timer logic for the tick-based game-timer.
 
 */
 

	
 
#include "stdafx.h"
 
#include "../stdafx.h"
 
#include "timer.h"
 
#include "timer_game_tick.h"
 

	
 
#include "safeguards.h"
 
#include "../safeguards.h"
 

	
 
uint64_t TimerGameTick::counter = 0;
 

	
src/timer/timer_game_tick.h
Show inline comments
 
@@ -10,7 +10,7 @@
 
#ifndef TIMER_GAME_TICK_H
 
#define TIMER_GAME_TICK_H
 

	
 
#include "gfx_type.h"
 
#include "../gfx_type.h"
 

	
 
#include <chrono>
 

	
src/timer/timer_manager.h
Show inline comments
 
@@ -11,7 +11,7 @@
 
#ifndef TIMER_MANAGER_H
 
#define TIMER_MANAGER_H
 

	
 
#include "stdafx.h"
 
#include "../stdafx.h"
 

	
 
template <typename TTimerType>
 
class BaseTimer;
src/timer/timer_window.cpp
Show inline comments
 
@@ -10,11 +10,11 @@
 
 * This file implements the timer logic for the Window system.
 
 */
 

	
 
#include "stdafx.h"
 
#include "../stdafx.h"
 
#include "timer.h"
 
#include "timer_window.h"
 

	
 
#include "safeguards.h"
 
#include "../safeguards.h"
 

	
 
template<>
 
void IntervalTimer<TimerWindow>::Elapsed(TimerWindow::TElapsed delta)
0 comments (0 inline, 0 general)