Codechange: Use correct type for max timetable start years constant (#11197)

This commit is contained in:
Tyler Trahan
2023-08-13 15:03:45 -04:00
committed by GitHub
parent 0726835735
commit 61dfd74e44

View File

@@ -11,9 +11,10 @@
#define TIMETABLE_H #define TIMETABLE_H
#include "date_type.h" #include "date_type.h"
#include "timer/timer_game_calendar.h"
#include "vehicle_type.h" #include "vehicle_type.h"
static const uint8_t MAX_TIMETABLE_START_YEARS = 15; ///< The maximum start date offset, in years. static const TimerGameCalendar::Year MAX_TIMETABLE_START_YEARS = 15; ///< The maximum start date offset, in years.
void ShowTimetableWindow(const Vehicle *v); void ShowTimetableWindow(const Vehicle *v);
void UpdateVehicleTimetable(Vehicle *v, bool travelling); void UpdateVehicleTimetable(Vehicle *v, bool travelling);